Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does CockroachDB support full text search?

Tags:

cockroachdb

I’m building an app on CockroachDB and need to do full-text search. Does CockroachDB provide that built-in?

like image 806
Peter Mattis Avatar asked Apr 11 '17 17:04

Peter Mattis


1 Answers

CockroachDB doesn't yet support full text search (which typically uses an inverted index). There are plans to add the feature in the future if there’s demand for it (you can chime in here). In the meantime, consider integrating Lucene, Sphinx, or another search engine into your project.

like image 78
Peter Mattis Avatar answered Sep 20 '22 16:09

Peter Mattis