From 04237870866faaf7dce7c21332b47fef5d79ce65 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 15 Apr 2016 15:26:00 +0200 Subject: [PATCH] Make the .narinfo cache bigger --- src/libstore/binary-cache-store.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index dcf06b3d1..95e5d68b7 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -24,7 +24,7 @@ private: struct State { - LRUCache> narInfoCache{32 * 1024}; + LRUCache> narInfoCache{64 * 1024}; }; Sync state;