The new version of MongoDB allows Full Text Search. That part is running fine for me:
db.collection.runCommand('text',{search:<keyword>})
However, I'm not sure that it is possible to run it through python's mongoengine. Does anyone know if there is a way to run "runCommand" with mongoengine or a workaround?
(I'm using mongoengine for my project, I'd hate to have to drop it for pymongo as it would probably mean recoding many things.)
Thanks!