(params = {})
| 430 | } |
| 431 | |
| 432 | async setChartCache(params = {}) { |
| 433 | return this.setCacheEntry({ |
| 434 | cacheKey: this.chartCacheKey(params), |
| 435 | payload: params.payload, |
| 436 | ttlMs: RUNTIME_CACHE_CONFIG.chartCacheTtlMs, |
| 437 | staleTtlMs: RUNTIME_CACHE_CONFIG.chartCacheStaleTtlMs, |
| 438 | registryKey: this.registryKey("chart", params.chartId), |
| 439 | }); |
| 440 | } |
| 441 | |
| 442 | async getSourceCache(params = {}) { |
| 443 | return this.getCacheEntry({ |
no test coverage detected