To index a text field, prefix the field name with `$`, as in `$title`.
This allows an index spec to reference arbitrary keys of a DictField: class MyDoc(Document): frobs = DictField() meta = { "indexes": ["frobs.fmep", "frobs.gorp"], }