mirror of
https://github.com/safing/portmaster
synced 2025-04-08 04:59:10 +00:00
[improvement] Small cache size
(2 ^ 8) = (2 XOR 8) = 10. Was it intended to be 256?
This commit is contained in:
parent
6e173e3b96
commit
df70c70ab5
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ var (
|
|||
var cache = database.NewInterface(&database.Options{
|
||||
Local: true,
|
||||
Internal: true,
|
||||
CacheSize: 2 ^ 8,
|
||||
CacheSize: 256,
|
||||
})
|
||||
|
||||
// getFileFunc is the function used to get a file from
|
||||
|
|
Loading…
Add table
Reference in a new issue