Live data from Hacker News

Meilisearch 1.0 – Open-source search engine built in Rust

blog.meilisearch.com

181–186 of 186 posts

Re: Meilisearch 1.0 – Open-source search engine built in Rust

#181
This looks like an effective piece for a project I have. It would be significantly more effective if it was published on crates.io and could be instantiated within Rust, and was able to operate in memory (or have a filesystem passed to it, so that can be simulated)

I found this issue which tracks crates.io publication: https://github.com/meilisearch/meilisearch/issues/3367

Would be nice to see that made a priority. Having a powerful search engine that can be embedded in a larger application and made portable (like being able to deploy to WASM) would be extremely novel and valuable. Given Rust is already in use, I think it may not necessarily demand too much effort. When search becomes a focus for what I’m working on, perhaps I will make that happen if not already done yet.

Thanks for making this available to people.

Re: Meilisearch 1.0 – Open-source search engine built in Rust

#182
post #10

Is Rust that important that you have to place "built in Rust" in the title? Is this like a cult following that we only bet on traffic and interest coming from other evangelists where Rust is the only feature that matter? 4 months ago: " Meilisearch, open-source alternative to Algolia in Rust lands a $15M Series A" It's not the first time I see, there are at least 2-3 daily submissions reaching the FP in this manner s…

This is Hacker News, where people are ostensibly interested in the technology used to build projects.

Re: Meilisearch 1.0 – Open-source search engine built in Rust

#184

Earlier quoted context omitted.

Our index was aimed at handling 20 000 documents at total of 35MB of CSV, this would balloon into 0.7GB to 1GB of RAM and we expected at least 1000 of these indexes, which would require dedicated servers with 1TB of RAM. This was when Meili was at version 0.27. With manticore, we've tried to run into these issues in benchmarks, but the only problem we got was temporary high IO load when indexes need to be re-indexed…

BTW if you are using the default row-wise Manticore storage, you may try out the Manticore columnar storage [1]. It can decrease the RAM consumption further. [1] https://manual.manticoresearch.com/Introduction#Storage-opti...

Thank you for that, I'll give it a go today!

Re: Meilisearch 1.0 – Open-source search engine built in Rust

#185

Earlier quoted context omitted.

BTW if you are using the default row-wise Manticore storage, you may try out the Manticore columnar storage [1]. It can decrease the RAM consumption further. [1] https://manual.manticoresearch.com/Introduction#Storage-opti...

Thank you for that, I'll give it a go today!

It seems to be too slow for our amount of updates, updates would need to rewrite the whole column.
Post reply on HN