diff --git a/README.md b/README.md index 1eb06bc..f7c801a 100644 --- a/README.md +++ b/README.md @@ -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