如何在 Vespa 中存储日期字段?
How to store a date field in Vespa?
我想存储一个包含日期字段的文档。表示它的最佳方式是什么?我应该在其 "search definition" 中使用哪种类型?
我在文档 (https://docs.vespa.ai/documentation/reference/search-definitions-reference.html#field_types) 中查找了 "date" 类型,但没有找到。
在 Vespa 中表示日期的最佳方式是使用 unix 时间戳。
搜索定义中的字段定义可以定义为:
# Creation date
field createdate type long {
indexing: summary | attribute
attribute: fast-search
}
请注意,'attribute' 将使值可搜索,'attribute: fast-search' 将提高搜索性能
我想存储一个包含日期字段的文档。表示它的最佳方式是什么?我应该在其 "search definition" 中使用哪种类型? 我在文档 (https://docs.vespa.ai/documentation/reference/search-definitions-reference.html#field_types) 中查找了 "date" 类型,但没有找到。
在 Vespa 中表示日期的最佳方式是使用 unix 时间戳。
搜索定义中的字段定义可以定义为:
# Creation date
field createdate type long {
indexing: summary | attribute
attribute: fast-search
}
请注意,'attribute' 将使值可搜索,'attribute: fast-search' 将提高搜索性能