summaryrefslogtreecommitdiffstats
path: root/api/web_hub.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-12-13 19:23:36 -0800
committerenahum <nahumhbl@gmail.com>2016-12-14 00:23:36 -0300
commitaacbe995483b694e169acdc63136171dff3725d9 (patch)
treee60e67a1378ce929f42e41a49c2215a0289eae78 /api/web_hub.go
parent51b794501e21e1d19a58bb6dc273a5425c03a107 (diff)
downloadchat-aacbe995483b694e169acdc63136171dff3725d9.tar.gz
chat-aacbe995483b694e169acdc63136171dff3725d9.tar.bz2
chat-aacbe995483b694e169acdc63136171dff3725d9.zip
PLT-4982 Adding caching to user profiles (#4782)
Diffstat (limited to 'api/web_hub.go')
-rw-r--r--api/web_hub.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/web_hub.go b/api/web_hub.go
index cad77395b..ce11d26b0 100644
--- a/api/web_hub.go
+++ b/api/web_hub.go
@@ -118,6 +118,7 @@ func InvalidateCacheForUser(userId string) {
func InvalidateCacheForUserSkipClusterSend(userId string) {
Srv.Store.Channel().InvalidateAllChannelMembersForUser(userId)
Srv.Store.User().InvalidateProfilesInChannelCacheByUser(userId)
+ Srv.Store.User().InvalidatProfileCacheForUser(userId)
if len(hubs) != 0 {
GetHubForUserId(userId).InvalidateUser(userId)