5 ms·
I've always wanted a full text search engine akin to "sqlite".
by nw05678 5y ago
I've always wanted a full text search engine akin to "sqlite".
- fizx 5y agosqlite is itself a full text search engine. It's gotten pretty good over the years. https://www.sqlite.org/fts5.html https://www.sqlite.org/fts5.html
- simonw 5y agoI've been having a lot of fun with the SQLite FTS library. The best public-facing demo I have is probably the search feature on https://datasette.io https://datasette.io - e.g. https://datasette.io/-/beta?q=fts- https://datasette.io/-/beta?q=fts- that's powered by my https://github.com/dogsheep/dogsheep-beta https://github.com/dogsheep/dogsheep-beta tool.
- slig 5y agoTypesense and Melisearch are what you're looking for.
- PixyMisa 5y agoYou could try Xapian. Or there's always SQLite itself.
- nwellnhof 5y agoThat's what Apache Lucy tried to become, but it's an abandoned project.
- jasonjayr 5y agoYou are aware sqlite includes a full text search engine too? https://sqlite.org/fts3.html https://sqlite.org/fts3.html https://sqlite.org/fts5.html https://sqlite.org/fts5.html