MongoDB full text search index: error: too many text index for, why?

Viewed 3564

I have one problem, I have collection and I want to set text search index to 2 fields(description and title). But when I add second index I get following error and text search stopped working.

{ "serverUsed" : "localhost/127.0.0.1:27017" , "ok" : 0.0 , "errmsg" : "too many text index for: testdb.users"}

when I delete one index search start work again. what is the problem? One collections support full text search index only for one field????

I am using the current version of mongodb under windows and I am using mongodb java driver API.

Thanks

2 Answers
Related