From 44f1251199ae384a1d46c01479b58b1bed610cb8 Mon Sep 17 00:00:00 2001 From: Daniel Lombardi Date: Wed, 27 Dec 2023 01:20:34 -0300 Subject: [PATCH] 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." --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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