作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对Elasticsearch如何将日期转换为JSON字符串表示形式有疑问。在此示例中,我使用的是1.4.2版。
首先,将包含日期字段“postDate”的简单文档过帐到类型为“datetest”的“myindex”:
curl -XPOST "http://localhost:9200/myindex/datetest/" -d'
{
"content": "Hello World!",
"postDate": "2009-11-15T14:12:12"
}'
curl -XGET "http://localhost:9200/myindex/_mapping/"
##postDate":{"type":"date","format":"dateOptionalTime"}
curl -XPOST "http://localhost:9200/myindex/datetest/" -d'
{
"content": "Hello World!",
"postDate": "2009-11-15T14:12:12-07:00"
}'
curl -XGET 'http://localhost:9200/myindex/datetest/_search?q=Hello'
"hits": {
"total": 2,
"max_score": 0.11506981,
"hits": [
{
"_index": "myindex",
"_type": "datetest",
"_id": "AUw0TyJgqFHXxhSON3r8",
"_score": 0.11506981,
"_source": {
"content": "Hello World!",
"postDate": "2009-11-15T14:12:12"
}
},
{
"_index": "myindex",
"_type": "datetest",
"_id": "AUw0VIQbqFHXxhSON3r-",
"_score": 0.095891505,
"_source": {
"content": "Hello World!",
"postDate": "2009-11-15T14:12:12-07:00"
}
}
]
}
最佳答案
源按原样存储,当您检索源时,Elasticsearch返回您发布的相同文档。
它在索引中“存储”长类型,并使用它在内部执行查询,但看不到它。
不要将源与索引混淆。
就像在为字符串“Erik Iverson”建立索引时一样,它将在索引中保存2个词条[erik] [iverson],但是在检索文档时,您会得到原始字符串,因为源未更改
关于json - Elasticsearch如何将日期转换为JSON字符串表示形式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29157945/
我是一名优秀的程序员,十分优秀!