valeriansaliou / sonic

🦔 Fast, lightweight & schema-less search backend. An alternative to Elasticsearch that runs on a few MBs of RAM.

Home Page:https://crates.io/crates/sonic-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bucket count limits

valerauko opened this issue · comments

I'm considering using sonic for full text search, and as the php library suggests buckets might be used "per user" I wonder if there's an upper (practical) limit on the number of buckets? Can it handle 6-700 thousand buckets?

Easily yes. Collections are designed to be few (eg. 1-10-100 collections), whereas buckets are designed to be many (at Crisp we handle 100k+ buckets on our Sonic instance).

Awesome, thank you!