Browse Source
Feature/improve caching of benchmarks (#3530)
* Improve caching
* Update changelog
pull/3526/head^2
Thomas Kaul
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/benchmark/benchmark.service.ts
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added support for derived currencies in the currency validation |
|
|
|
- Added support for automatic deletion of unused asset profiles when deleting activities |
|
|
|
- Improved the caching of the benchmarks in the markets overview (only cache if needed) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
@ -135,7 +135,7 @@ export class BenchmarkService { |
|
|
|
Promise.all(promisesAllTimeHighs), |
|
|
|
Promise.all(promisesBenchmarkTrends) |
|
|
|
]); |
|
|
|
let storeInCache = true; |
|
|
|
let storeInCache = useCache; |
|
|
|
|
|
|
|
benchmarks = allTimeHighs.map((allTimeHigh, index) => { |
|
|
|
const { marketPrice } = |
|
|
|