views:

36

answers:

1

My task ahead is to insert a giant amount of data into a document-oriented DB (any one of them) and have it be full-text searchable as a whole (on all or any field).

Do I have to use a DB and a separate full-text search index like Solr or are there document-oriented DBs with fulltext search kind of built-in?

A: 

I think that you can look in open source DB (Firebird, PostgreSQL or MySQL) and open source FullText Search engine (Lucene or Sphinx).

Generally separate full-text search index is quicker.

Hugues Van Landeghem