Skip to content

Commit 9843e64

Browse files
whoandonnemartin
authored andcommitted
Add missing word in cache write through discussion (donnemartin#245)
1 parent 75298db commit 9843e64

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
@@ -1218,7 +1218,7 @@ Write-through is a slow overall operation due to the write operation, but subseq
12181218
##### Disadvantage(s): write through
12191219

12201220
* When a new node is created due to failure or scaling, the new node will not cache entries until the entry is updated in the database. Cache-aside in conjunction with write through can mitigate this issue.
1221-
* Most data written might never read, which can be minimized with a TTL.
1221+
* Most data written might never be read, which can be minimized with a TTL.
12221222

12231223
#### Write-behind (write-back)
12241224

0 commit comments

Comments
 (0)