From ee11f25d4cfd25c0fe1a31657e665853c0136004 Mon Sep 17 00:00:00 2001 From: Kohei Tamura Date: Mon, 18 Mar 2019 10:29:17 +0900 Subject: [PATCH] Fix a typo --- server_development/topics/user-storage/cache.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_development/topics/user-storage/cache.adoc b/server_development/topics/user-storage/cache.adoc index 45f536f9e8..4e92c3a624 100644 --- a/server_development/topics/user-storage/cache.adoc +++ b/server_development/topics/user-storage/cache.adoc @@ -1,7 +1,7 @@ === User Caches -When a user object is loaded by ID, username, or email queries it is cached. When a user object is bing cached, it iterates through +When a user object is loaded by ID, username, or email queries it is cached. When a user object is being cached, it iterates through the entire `UserModel` interface and pulls this information to a local in-memory-only cache. In a cluster, this cache is still local, but it becomes an invalidation cache. When a user object is modified, it is evicted. This eviction event is propagated to the entire cluster so that the other nodes' user cache is also invalidated.