mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
toggles: add feature toggle to increase in mem caching (#55014)
Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
parent
7c4c2fb341
commit
72ae4a5aa3
@ -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"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user