How I built a server-side cache with ExpressJS & React (dev.to)
from csansoon@lemmy.world to programming@programming.dev on 23 Apr 14:42
https://lemmy.world/post/14609862

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!

#programming

threaded - newest

DerArzt@lemmy.world on 23 Apr 18:16 collapse

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

Dunstabzugshaubitze@feddit.de on 24 Apr 06:25 collapse

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.