Matthias Endler
Matthias Endler
Okay, I see. The `body` field gets sanitized by removing non-alphabetic characters and lowercasing every word. Right now, this is what gets ingested into the bloom filter. I'd like to...
Thanks for the quick response and the encouragement. Stay tuned for updates.
I like it.
> what's wrong with tinysearch? @wparad I mentioned some reasons in the first comment. > * Not the the most creative of names. > * Is it tinysearch or tiny-search...
Can you try to compile the version from `master`? We recently switched to XOR filters, which might give you a better false-positive rate. The Docker image is not updated to...
Good point! I like that idea. There could be a `tinysearch build`, which only builds the wasm and a `tinysearch init`, which initializes the project and generates the other files,...
Hey @Jieiku, As a Zola user myself, I'd love to see tinysearch integrated into Zola! You're right, at the moment, tinysearch is very English-centric. [Our stopwords file is here](https://github.com/tinysearch/tinysearch/blob/master/bin/assets/stopwords) and...
Great progress so far. The problem is that tinysearch stores the body as a Bloomfilter (XOR filter to be precise), which allows you to query if a word is contained...
The beauty of the optional field is that it's zero overhead: users don't pay for it if they don't use it. On top of that, if it gets used then...
No work was done yet. Feel free to give it a try if you like. Thanks! 🙏