How I built a server-side cache with ExpressJS & React

https://dev.to/latitude/how-i-keep-my-expressjs-react-apps-fast-with-server-side-caching-5gj7

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!

5 points · 2 comments · view on lemmy.world

2 Comments

DerArzt@lemmy.world · 8 pts · 2y (1 reply)

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

Dunstabzugshaubitze@feddit.de · 3 pts · 2y

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.