From 86fb0d87a3a09b237bec124ce0e74cd05aa164be Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Tue, 13 Dec 2016 22:24:24 -0500 Subject: Adding caching layer to some posts calls (#4779) --- api/post.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'api/post.go') diff --git a/api/post.go b/api/post.go index 143dbf7e1..a4a493060 100644 --- a/api/post.go +++ b/api/post.go @@ -166,6 +166,8 @@ func CreatePost(c *Context, post *model.Post, triggerWebhooks bool) (*model.Post } } + InvalidateCacheForChannelPosts(rpost.ChannelId) + handlePostEvents(c, rpost, triggerWebhooks) return rpost, nil @@ -1226,6 +1228,8 @@ func updatePost(c *Context, w http.ResponseWriter, r *http.Request) { go Publish(message) + InvalidateCacheForChannelPosts(rpost.ChannelId) + w.Write([]byte(rpost.ToJson())) } } @@ -1278,7 +1282,7 @@ func getPosts(c *Context, w http.ResponseWriter, r *http.Request) { return } - etagChan := Srv.Store.Post().GetEtag(id) + etagChan := Srv.Store.Post().GetEtag(id, true) if !HasPermissionToChannelContext(c, id, model.PERMISSION_CREATE_POST) { return @@ -1508,6 +1512,8 @@ func deletePost(c *Context, w http.ResponseWriter, r *http.Request) { go DeletePostFiles(post) go DeleteFlaggedPost(c.Session.UserId, post) + InvalidateCacheForChannelPosts(post.ChannelId) + result := make(map[string]string) result["id"] = postId w.Write([]byte(model.MapToJson(result))) @@ -1567,7 +1573,7 @@ func getPostsBeforeOrAfter(c *Context, w http.ResponseWriter, r *http.Request, b } // We can do better than this etag in this situation - etagChan := Srv.Store.Post().GetEtag(id) + etagChan := Srv.Store.Post().GetEtag(id, true) if !HasPermissionToChannelContext(c, id, model.PERMISSION_READ_CHANNEL) { return -- cgit v1.2.3-1-g7c22