mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 02:16:30 +00:00
Tweak cache durations (#183)
This commit is contained in:
parent
f9d545f9ff
commit
361207c40c
1 changed files with 3 additions and 3 deletions
|
@ -56,20 +56,20 @@ impl Engine {
|
||||||
);
|
);
|
||||||
let get_popular_crates = Cache::new(
|
let get_popular_crates = Cache::new(
|
||||||
GetPopularCrates::new(client.clone()),
|
GetPopularCrates::new(client.clone()),
|
||||||
Duration::from_secs(120),
|
Duration::from_secs(15 * 60),
|
||||||
1,
|
1,
|
||||||
logger.clone(),
|
logger.clone(),
|
||||||
);
|
);
|
||||||
let get_popular_repos = Cache::new(
|
let get_popular_repos = Cache::new(
|
||||||
GetPopularRepos::new(client.clone()),
|
GetPopularRepos::new(client.clone()),
|
||||||
Duration::from_secs(120),
|
Duration::from_secs(5 * 60),
|
||||||
1,
|
1,
|
||||||
logger.clone(),
|
logger.clone(),
|
||||||
);
|
);
|
||||||
let retrieve_file_at_path = RetrieveFileAtPath::new(client.clone());
|
let retrieve_file_at_path = RetrieveFileAtPath::new(client.clone());
|
||||||
let fetch_advisory_db = Cache::new(
|
let fetch_advisory_db = Cache::new(
|
||||||
FetchAdvisoryDatabase::new(client),
|
FetchAdvisoryDatabase::new(client),
|
||||||
Duration::from_secs(1800),
|
Duration::from_secs(30 * 60),
|
||||||
1,
|
1,
|
||||||
logger,
|
logger,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue