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
{
LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{32 * 1024};
LRUCache<Path, std::shared_ptr<NarInfo>> narInfoCache{64 * 1024};
};
Sync<State> state;