Y
Hacker News
new
|
ask
|
show
|
jobs
by
anonu
2623 days ago
What would be your go-to solution for a basic word search - lets say you only have a few MBs of data - not GBs...
2 comments
rebelde
2623 days ago
Full-text search from MySQL or other similar database. When that gets overloaded, then consider something like Elastic Search. That is my rule.
link
winrid
2622 days ago
Few mbs - just use lucene in memory if you're using Java.
link