Full-text search in NoSQL databases [closed]

None of the existing “NoSQL” database provides a reasonable implementation of something that could be named “fulltext search”. MongoDB in particular has barely nothing so far (matching using regular expressions is not fulltext search and searching using $in or $all operators on a keyword word list is just a very poor implementation of a “fulltext search”). Using Solr, ElasticSearch or Sphinx is straight forward – an implementation and integration on the application level. Your choice widely depends on you requirements and current setup.

Leave a Comment