diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-15T13·26+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-15T13·39+0200 |
commit | 04237870866faaf7dce7c21332b47fef5d79ce65 (patch) | |
tree | 0370c15242ceca4632dc7c7659938256b9368e1a /src/libstore/binary-cache-store.hh | |
parent | a7d8eaba540ce272bc4fc19afdeae177a3b086d9 (diff) |
Make the .narinfo cache bigger
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index dcf06b3d1bbc..95e5d68b70ae 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -24,7 +24,7 @@ private: struct State { - LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{32 * 1024}; + LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{64 * 1024}; }; Sync<State> state; |