1

我想存储一个包含日期字段的文档。表示它的最佳方式是什么,我应该在其“搜索定义”中使用哪种类型?我在文档( https://docs.vespa.ai/documentation/reference/search-definitions-reference.html#field_types )中寻找了“日期”类型,但没有找到。

4

1 回答 1

4

在 Vespa 中表示日期的最佳方式是使用 unix 时间戳。

搜索定义中的字段定义可以定义为:

# Creation date
field createdate type long {
    indexing: summary | attribute
    attribute: fast-search
}

请注意,“属性”将使值可搜索,“属性:快速搜索”将提高搜索性能

于 2018-09-13T15:33:24.567 回答