mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
FeatureToggle: for storing sessions in a Remote Cache
Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com>
This commit is contained in:
parent
201c7e123d
commit
b8a8c15148
@ -67,4 +67,5 @@ export interface FeatureToggles {
|
||||
redshiftAsyncQueryDataSupport?: boolean;
|
||||
athenaAsyncQueryDataSupport?: boolean;
|
||||
increaseInMemDatabaseQueryCache?: boolean;
|
||||
sessionRemoteCache?: boolean;
|
||||
}
|
||||
|
@ -283,5 +283,10 @@ var (
|
||||
Name: "increaseInMemDatabaseQueryCache",
|
||||
Description: "Enable more in memory caching for database queries",
|
||||
},
|
||||
{
|
||||
Name: "sessionRemoteCache",
|
||||
Description: "Enable using remote cache for users and sessions",
|
||||
State: FeatureStateAlpha,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -210,4 +210,7 @@ const (
|
||||
// FlagIncreaseInMemDatabaseQueryCache
|
||||
// Enable more in memory caching for database queries
|
||||
FlagIncreaseInMemDatabaseQueryCache = "increaseInMemDatabaseQueryCache"
|
||||
|
||||
// FlagSessionRemoteCache
|
||||
// Enable using remote cacse for users and seFlagSessionRemoteCache = "sessionRemoteCache"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user