Y
Hacker News
new
|
ask
|
show
|
jobs
by
nw05678
1652 days ago
I've always wanted a full text search engine akin to "sqlite".
6 comments
jasonjayr
1652 days ago
You are aware sqlite includes a full text search engine too?
https://sqlite.org/fts3.html
https://sqlite.org/fts5.html
link
simonw
1651 days ago
I'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
- e.g.
https://datasette.io/-/beta?q=fts-
that's powered by my
https://github.com/dogsheep/dogsheep-beta
tool.
link
slig
1651 days ago
Typesense and Melisearch are what you're looking for.
link
fizx
1652 days ago
sqlite is itself a full text search engine. It's gotten pretty good over the years.
https://www.sqlite.org/fts5.html
link
nwellnhof
1651 days ago
That's what Apache Lucy tried to become, but it's an abandoned project.
link
PixyMisa
1651 days ago
You could try Xapian. Or there's always SQLite itself.
link
https://sqlite.org/fts3.html https://sqlite.org/fts5.html