MongoDB - textSearchEnabled - specify in config file -


http://docs.mongodb.org/manual/tutorial/enable-text-search/

this doc says, can specify in configuration file

you can enable text search feature @ startup textsearchenabled parameter:

mongod --setparameter textsearchenabled=true

you may prefer set textsearchenabled parameter in configuration file.

i tried specify in configuration file this:

textsearchenabled=true 

but didnt work. know correct syntax this?

setparameter=textsearchenabled=true 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -