Skip to content

Commit 44f1251

Browse files
authoredDec 27, 2023
Fixed wording on How to Improve API Performance?- Caching - Update README.md (ByteByteGoHq#68)
Changed "We can `cache` frequently accessed data into a cache." to "We can `store` frequently accessed data into a cache."
1 parent a219053 commit 44f1251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Synchronous logging deals with the disk for every call and can slow down the sys
257257

258258
Caching
259259

260-
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.
260+
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.
261261

262262
Payload Compression
263263

0 commit comments

Comments
 (0)