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.