Caching is a data storing technique for faster data retrieval. Faster in a sense that it is faster than getting data from its’ primary storage like a database. To achieve this we usually cache frequently requested or computed data.
Tag: System Design
System Scalability and Strategies to Build a Scalable System
In very simple terms, system scalability is the system’s capability to handle a growing amount of work while still being able to perform effectively. This could be for example getting more requests to your system as the system gets more users or having the need […]