mirror of
1
Fork 0

increase cache size, since all we're storing is string keys

This commit is contained in:
kim 2025-01-15 16:13:07 +00:00
parent 3aa9abe5f3
commit e6a3a73944
1 changed files with 1 additions and 1 deletions

View File

@ -84,6 +84,6 @@ func New(
intFilter: intFilter,
spamFilter: spamFilter,
}
fdb.activityIDs.Init(0, 1000)
fdb.activityIDs.Init(0, 2048)
return &fdb
}