ElasticSearch Date Math找出它在计算什么

时间:2015-12-23 08:47:41

标签: elasticsearch

所以我想知道$(".fancybox").fancybox({ openEffect : 'none', closeEffect : 'none', beforeShow : function() { this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + ' '+(this.title ? '' + this.title + '' : ''); }, helpers : { thumbs : { width : 50, height : 50 } } }); 正在产生什么。它是这样的:

  1. now-1y
  2. now - 365days
  3. 现在减去年份部分,所以now - 365.25days
  4. 我已阅读此documentation但无法找到更多信息。

1 个答案:

答案 0 :(得分:1)

经过一些测试后,似乎第三个命题是正确的(即“现在减去年份部分,所以2014-12-23T08:46:00”

如果2是正确的,则以下示例应返回2结果。 example1

2012年是闰年。如果1正确,以下示例应返回0结果。 example2

注意:示例仅在我编写此答案时按预期工作,为了使其适用于您,您必须更新索引文档的日期字段。