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
This commit is contained in:
Corey Hulen
2016-12-08 07:18:15 -08:00
committed by Harrison Healey
parent 7acd135e02
commit c4974374d9
12 changed files with 76 additions and 10 deletions

View File

@@ -19,6 +19,7 @@ type ClusterInterface interface {
GetLogs() ([]string, *model.AppError)
GetClusterId() string
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
InvalidateAllCaches() *model.AppError
}
var theClusterInterface ClusterInterface