Zango
Zango

Reputation: 2387

MongoDB full text search in production?

Does anyone have experience of using MongoDB full text search in production?
What advice can you give me about that?
I think it is a little risky to use it in production because it's in beta state. Am i right?

Upvotes: 2

Views: 2024

Answers (1)

Philipp
Philipp

Reputation: 69783

Currently (September 2013) The MongoDB fulltext search is still in beta stage. The documentation explicitely warns from using it:

The text search is currently a beta feature

[...]

Warning:

•Do not enable or use text search on production systems.

Likely reasons for this warning:

  1. Implementation- and API details are subject to change. Anything you develop and which works now could fail the next time you update MongoDB.
  2. It isn't fully tested. There could still be obscure bugs lurking in it which could break your application.

For these reasons you should not use it in a real-world application before 10gen has declared it finished.

Update: As of Version 2.6, text search has production quality.

Upvotes: 3

Related Questions