summaryrefslogtreecommitdiffstats
path: root/store/sql_user_store.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-12-08 07:18:15 -0800
committerHarrison Healey <harrisonmhealey@gmail.com>2016-12-08 10:18:15 -0500
commitc4974374d9840caa6ec496c138a6220dd40afa54 (patch)
treec450cb63b76e032412f3e9c4433bae9518c89513 /store/sql_user_store.go
parent7acd135e021de28bac61e65d5293be8a4f0df328 (diff)
downloadchat-c4974374d9840caa6ec496c138a6220dd40afa54.tar.gz
chat-c4974374d9840caa6ec496c138a6220dd40afa54.tar.bz2
chat-c4974374d9840caa6ec496c138a6220dd40afa54.zip
PLT-4853 Adding cache purging to the server (server) (#4735)
* PLT-4853 Adding caching invalidation to HA * PLT-4853 Adding cach purging to the server
Diffstat (limited to 'store/sql_user_store.go')
-rw-r--r--store/sql_user_store.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/store/sql_user_store.go b/store/sql_user_store.go
index c8c6714d8..3fddfb77d 100644
--- a/store/sql_user_store.go
+++ b/store/sql_user_store.go
@@ -35,6 +35,10 @@ type SqlUserStore struct {
var profilesInChannelCache *utils.Cache = utils.NewLru(PROFILES_IN_CHANNEL_CACHE_SIZE)
+func ClearUserCaches() {
+ profilesInChannelCache.Purge()
+}
+
func NewSqlUserStore(sqlStore *SqlStore) UserStore {
us := &SqlUserStore{sqlStore}