Whoosh中使用的COLUMN字段类型是什么?

时间:2019-04-03 15:02:21

标签: whoosh

提供了各种预制的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 = Falsestored = False有点奇怪,因为文档字符串表明它已存储。

但是我的搜索结果似乎未返回该字段。这意味着它没有存储(?)

哪个让我质疑既没有存储也没有索引的字段的点是什么?

如果我将这些字段更改为STORED,那么它们将返回结果中。

0 个答案:

没有答案