summaryrefslogtreecommitdiffstats
path: root/store/layered_store_hints.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/layered_store_hints.go')
-rw-r--r--store/layered_store_hints.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/store/layered_store_hints.go b/store/layered_store_hints.go
new file mode 100644
index 000000000..6154af7c9
--- /dev/null
+++ b/store/layered_store_hints.go
@@ -0,0 +1,11 @@
+// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package store
+
+type LayeredStoreHint int
+
+const (
+ LSH_NO_CACHE LayeredStoreHint = iota
+ LSH_MASTER_ONLY
+)