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
commit e6a3a73944

View file

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