是否可以使用 mongo 文本索引对 EVE 进行文本搜索?

Is it possible to do text search with EVE using the mongo text index?

是否可以在 EVE 中使用文本搜索?它已在 mongo https://docs.mongodb.com/v3.2/text-search/ 上实现,但我不能 运行 在 EVE 上实现。

find( { $text: { $search: "java \"coffee shop\"" } } )

是的,必须先创建索引

例如(在settings.py):

'mongo_indexes' : {'text': ([('names.keyword', "text")])}

然后是

localhost:5000/api/images?where={"$text": {"$search": "food dog"}}