1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Make the .narinfo cache bigger

This commit is contained in:
Eelco Dolstra 2016-04-15 15:26:00 +02:00
parent a7d8eaba54
commit 0423787086

View file

@ -24,7 +24,7 @@ private:
struct State struct State
{ {
LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{32 * 1024}; LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{64 * 1024};
}; };
Sync<State> state; Sync<State> state;