Hacker News new | ask | show | jobs
by zepolen 6294 days ago
Scaling = Increasing capacity indefinitely by adding more nodes.

Caching is not scaling because by definition, it depends on a backend to provide it data.

If the backend is a database then sure, you can increase capacity by ~10x (assuming a ~90% cache hit rate), but after that, throwing more caching nodes at the problem won't do a thing if your database itself isn't scalable.

All a cache does is increase speed at decreased costs, but it is not in itself a scaling solution.