Skip to content

Commit

Permalink
Tech - Augmentation de caches (#3513)
Browse files Browse the repository at this point in the history
## Linked issues

- Augmentation de caches

----

- [ ] Tests E2E (Cypress)
  • Loading branch information
louptheron committed Aug 9, 2024
2 parents 387aee3 + 6ac5ab1 commit 62d9ae7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class CaffeineConfiguration {

// Risk Factors
val riskFactorCache = buildMinutesCache(riskFactor, ticker, 1)
val riskFactorsCache = buildMinutesCache(riskFactors, ticker, 1)
val riskFactorsCache = buildMinutesCache(riskFactors, ticker, 2)

// Segments
val currentSegmentsCache = buildMinutesCache(currentSegments, ticker, 1)
Expand All @@ -142,7 +142,7 @@ class CaffeineConfiguration {
val searchVesselsCache = buildMinutesCache(searchVessels, ticker, 60)
val vesselTrackCache = buildMinutesCache(vesselTrack, ticker, 1)
val vesselCache = buildMinutesCache(vessel, ticker, 60)
val vesselsCache = buildMinutesCache(vessels, ticker, 60)
val vesselsCache = buildMinutesCache(vessels, ticker, 120)
val vesselsAllPositionsCache = buildSecondsCache(vesselsAllPositions, ticker, 30)
val vesselsPositionsCache = buildSecondsCache(vesselsPositions, ticker, 30)
val vesselsPositionsWithBeaconMalfunctionsCache = buildMinutesCache(
Expand Down

0 comments on commit 62d9ae7

Please sign in to comment.