Fixed wording on How to Improve API Performance?- Caching - Update README.md (#68)

Changed "We can `cache` frequently accessed data into a cache." to "We
can `store` frequently accessed data into a cache."
This commit is contained in:
Daniel Lombardi
2023-12-27 01:20:34 -03:00
committed by GitHub
parent a219053f42
commit 44f1251199

View File

@@ -257,7 +257,7 @@ Synchronous logging deals with the disk for every call and can slow down the sys
Caching
We can cache frequently accessed data into a cache. The client can query the cache first instead of visiting the database directly. If there is a cache miss, the client can query from the database. Caches like Redis store data in memory, so the data access is much faster than the database.
We can store frequently accessed data into a cache. The client can query the cache first instead of visiting the database directly. If there is a cache miss, the client can query from the database. Caches like Redis store data in memory, so the data access is much faster than the database.
Payload Compression