mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 00:47:38 -06:00
Enterprise: Add Redis caching documentation (#32001)
* Document Redis cache config in Grafana Enterprise Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
This commit is contained in:
parent
13fd2bd53f
commit
6e1c5e957a
@ -351,3 +351,13 @@ The default TTL (time to live) if no other TTL is available.
|
|||||||
### gc_interval
|
### gc_interval
|
||||||
|
|
||||||
When storing cache data in-memory, this setting defines how often a background process cleans up stale data from the in-memory cache. More frequent "garbage collection" can keep memory usage from climbing but will increase CPU usage.
|
When storing cache data in-memory, this setting defines how often a background process cleans up stale data from the in-memory cache. More frequent "garbage collection" can keep memory usage from climbing but will increase CPU usage.
|
||||||
|
|
||||||
|
## [caching.redis]
|
||||||
|
|
||||||
|
### url
|
||||||
|
|
||||||
|
The full Redis URL of your Redis server. Example: `redis://localhost:6739/0`.
|
||||||
|
|
||||||
|
### prefix
|
||||||
|
|
||||||
|
A string that prefixes all Redis keys. This value must be set if using a shared database in Redis. If `prefix` is empty, then one will not be used.
|
||||||
|
@ -11,7 +11,7 @@ weight = 110
|
|||||||
|
|
||||||
When query caching is enabled, Grafana temporarily stores the results of data source queries. When you or another user submit the exact same query again, the results will come back from the cache instead of from the data source (like Splunk or ServiceNow) itself.
|
When query caching is enabled, Grafana temporarily stores the results of data source queries. When you or another user submit the exact same query again, the results will come back from the cache instead of from the data source (like Splunk or ServiceNow) itself.
|
||||||
|
|
||||||
Query caching currently works for all backend data sources. You can enable the cache globally and configure the cache duration (also called Time to Live, or TTL). The cache is in-memory only.
|
Query caching currently works for all backend data sources. You can enable the cache globally and configure the cache duration (also called Time to Live, or TTL). The cache can either be in-memory or in Redis.
|
||||||
|
|
||||||
## Query caching benefits
|
## Query caching benefits
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user