From 9843e649cf006e04120c532d045ab073901e3825 Mon Sep 17 00:00:00 2001 From: Juan Eugenio Abadie Date: Sat, 5 Jan 2019 14:20:17 -0300 Subject: [PATCH] Add missing word in cache write through discussion (#245) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64ae891..af77d6d 100644 --- a/README.md +++ b/README.md @@ -1218,7 +1218,7 @@ Write-through is a slow overall operation due to the write operation, but subseq ##### Disadvantage(s): write through * 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. -* Most data written might never read, which can be minimized with a TTL. +* Most data written might never be read, which can be minimized with a TTL. #### Write-behind (write-back)