DEV Community

Prakash Suresh
Prakash Suresh

Posted on

Scaleability

Jotting down a simple point, that helped us to scale much better.

Everything, that is processed in-memory is insanely fast, that stuff that's done interacting with filesystem/databases.

Recently, we were to scale certain processing which was pre-dominantly was my-sql heavy.

Changed the computation to in-memory with Redis and suddenly we were more than 25X faster.

Top comments (0)