Create a mongodb text index with no default language
问题 I'M trying to create a text index without a default language. The official docs specify If you specify a language value of "none", then the text search uses simple tokenization with no list of stop words and no stemming. Hence I tried: createIndex({aliases : "text"}, {name : "aliases_txt"}, {default_language: "none"}) However the created index ignores my option and has "english" as default language: { "v": 1, "key": { "_fts": "text", "_ftsx": 1 }, "name": "aliases_txt", "ns": "ner-dict.ents",