提供了各种预制的FieldType
类:
https://whoosh.readthedocs.io/en/latest/api/fields.html#pre-made-field-types
上面的文档中未列出的是COLUMN
class COLUMN(FieldType):
"""
Configured field type for fields you want to store as a per-document
value column but not index.
"""
indexed = False
stored = False
它有indexed = False
和stored = False
有点奇怪,因为文档字符串表明它已存储。
但是我的搜索结果似乎未返回该字段。这意味着它没有存储(?)
哪个让我质疑既没有存储也没有索引的字段的点是什么?
如果我将这些字段更改为STORED
,那么它们将返回结果中。