Browse Source
Feature/improve caching of benchmarks (#1320)
* Improve caching
* Update changelog
pull/1318/head^2
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
16 additions and
5 deletions
-
CHANGELOG.md
-
apps/api/src/app/benchmark/benchmark.service.ts
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the caching of the benchmarks in the markets overview (only cache if fetching was successful) |
|
|
|
|
|
|
|
## 1.201.0 - 01.10.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -73,6 +73,7 @@ export class BenchmarkService { |
|
|
|
} |
|
|
|
|
|
|
|
const allTimeHighs = await Promise.all(promises); |
|
|
|
let storeInCache = true; |
|
|
|
|
|
|
|
benchmarks = allTimeHighs.map((allTimeHigh, index) => { |
|
|
|
const { marketPrice } = |
|
|
@ -85,6 +86,8 @@ export class BenchmarkService { |
|
|
|
allTimeHigh, |
|
|
|
marketPrice |
|
|
|
); |
|
|
|
} else { |
|
|
|
storeInCache = false; |
|
|
|
} |
|
|
|
|
|
|
|
return { |
|
|
@ -100,11 +103,13 @@ export class BenchmarkService { |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
await this.redisCacheService.set( |
|
|
|
this.CACHE_KEY_BENCHMARKS, |
|
|
|
JSON.stringify(benchmarks), |
|
|
|
ms('4 hours') / 1000 |
|
|
|
); |
|
|
|
if (storeInCache) { |
|
|
|
await this.redisCacheService.set( |
|
|
|
this.CACHE_KEY_BENCHMARKS, |
|
|
|
JSON.stringify(benchmarks), |
|
|
|
ms('4 hours') / 1000 |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
return benchmarks; |
|
|
|
} |
|
|
|