summaryrefslogtreecommitdiffstats
path: root/model
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 /model
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 'model')
-rw-r--r--model/client.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/model/client.go b/model/client.go
index f782940d8..53b1887a0 100644
--- a/model/client.go
+++ b/model/client.go
@@ -974,6 +974,16 @@ func (c *Client) ReloadConfig() (bool, *AppError) {
}
}
+func (c *Client) InvalidateAllCaches() (bool, *AppError) {
+ c.clearExtraProperties()
+ if r, err := c.DoApiGet("/admin/invalidate_all_caches", "", ""); err != nil {
+ return false, err
+ } else {
+ c.fillInExtraProperties(r)
+ return c.CheckStatusOK(r), nil
+ }
+}
+
func (c *Client) SaveConfig(config *Config) (*Result, *AppError) {
if r, err := c.DoApiPost("/admin/save_config", config.ToJson()); err != nil {
return nil, err