mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
toggles: add feature toggle to increase in mem caching (#55014)
Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
@@ -67,4 +67,5 @@ export interface FeatureToggles {
|
||||
traceqlEditor?: boolean;
|
||||
redshiftAsyncQueryDataSupport?: boolean;
|
||||
athenaAsyncQueryDataSupport?: boolean;
|
||||
increaseInMemDatabaseQueryCache?: boolean;
|
||||
}
|
||||
|
||||
@@ -285,5 +285,9 @@ var (
|
||||
State: FeatureStateAlpha,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "increaseInMemDatabaseQueryCache",
|
||||
Description: "Enable more in memory caching for database queries",
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
@@ -210,4 +210,8 @@ const (
|
||||
// FlagAthenaAsyncQueryDataSupport
|
||||
// Enable async query data support for Athena
|
||||
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
|
||||
|
||||
// FlagIncreaseInMemDatabaseQueryCache
|
||||
// Enable more in memory caching for database queries
|
||||
FlagIncreaseInMemDatabaseQueryCache = "increaseInMemDatabaseQueryCache"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user