this post was submitted on 23 Apr 2024
0 points (NaN% liked)

Programming

17020 readers
233 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

Hi there,

I have written an article on implementing server-side caching that ensures your app stays fast as you scale.

I’ve used ExpressJS for the API server, and React for the frontend.

Hope this helps someone!

top 2 comments
sorted by: hot top controversial new old
[–] DerArzt@lemmy.world 0 points 4 months ago (1 children)

If you're worried about speed, there are better options for your backend than JavaScript.

[–] Dunstabzugshaubitze@feddit.de 0 points 4 months ago

sure, if the limitting factor in a case like this would be the speed of computation and not slow IO than implementing the computation in another language would be a viable way to increase performance.