Skip to content

Commit 5fe5dc6

Browse files
committed
Change cache size to 10^4
1 parent 95333dd commit 5fe5dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auxiliary/caches.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ struct NoCache <: CacheStyle end
99
struct TaskLocalCache{D<:AbstractDict} <: CacheStyle end
1010
struct GlobalLRUCache <: CacheStyle end
1111

12-
const DEFAULT_GLOBALCACHE_SIZE = Ref(10^5)
12+
const DEFAULT_GLOBALCACHE_SIZE = Ref(10^4)
1313

1414
function CacheStyle(args...)
1515
return GlobalLRUCache()

0 commit comments

Comments
 (0)