about summary refs log tree commit diff
path: root/src/libstore/binary-cache-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-15T13·26+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-15T13·39+0200
commit04237870866faaf7dce7c21332b47fef5d79ce65 (patch)
tree0370c15242ceca4632dc7c7659938256b9368e1a /src/libstore/binary-cache-store.hh
parenta7d8eaba540ce272bc4fc19afdeae177a3b086d9 (diff)
Make the .narinfo cache bigger
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r--src/libstore/binary-cache-store.hh2
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;