**
Is it possible to create a compound index with a full text search field in it, so something like that:
db.posts.ensureIndex( { user_id: 1, content: "text", hidden_flag: 1 } )
** More importantly, how do you run a Full text search query on this? I want to do text search on user's posts, so something like that:
db.posts.runCommand("text", { search: "cool stuff", filter: { user_id: ObjectId("518d3f6b89d50f8b65000005"), hidden_flag: "1" } } )
As I understand, filter does not use index. Is there a way to make mongo use the compound index?
** Also it it possible to do a explain on a full text query?