ResourceS - moving short cache to general cache

This commit is contained in:
DanB
2017-09-07 11:53:31 +02:00
parent 25babe9746
commit 5108e88e42
8 changed files with 29 additions and 42 deletions

View File

@@ -56,9 +56,10 @@ var (
CacheDerivedChargers: DERIVEDCHARGERS_PREFIX,
CacheResourceProfiles: ResourceProfilesPrefix,
CacheResources: ResourcesPrefix,
CacheEventResources: EventResourcesPrefix,
CacheTimings: TimingsPrefix,
CacheStatSQueues: META_NONE,
CacheStatSEventQueues: META_NONE,
CacheEventQueues: META_NONE,
}
CachePrefixToInstance map[string]string // will be built on init
)
@@ -436,7 +437,9 @@ const (
ExtraInfo = "ExtraInfo"
MetaPrefix = "*"
CacheStatSQueues = "stats_queues"
CacheStatSEventQueues = "stats_event_queues"
CacheEventQueues = "event_queues"
CacheEventResources = "event_resources"
EventResourcesPrefix = "ers_"
)
func buildCacheInstRevPrefixes() {