作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何确保在Elasticsearch中索引的每个文档都加上时间戳?
node = new Uri("http://localhost:9201);
settings =
new ConnectionSettings(node).DefaultIndex("mytestindex");
elasticClient = new ElasticClient(settings);
// Then I do
elasticClient.Index(connections, idx => idx.Id("1")
<MyDoc>
类型的所有文档? var test =
elasticClient.Search<MyDoc>(
s => s.Query(q => q.DateRange(x => x.LessThan(DateTime.Now.AddHours(-1)))));
最佳答案
您可以启用_timestamp,但不建议使用_timestamp。不再使用它,只需在数据对象中定义日期属性并显式设置
await client.MapAsync<Blog>(m => m.TimestampField(t => t.Enabled(true)));
关于c# - 将时间戳记添加到ElasticSearch-Nest 2.0中添加的每个文档中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39535422/
我希望在 vim 缓冲区中包含以下内容,最好独立于操作系统。 键入 today 将替换为 =20130716。 需要等号! 输入 tomorrow 将替换为 =20130717 键入 nextweek
我在尝试显示时间为DURATION的缩略图时遇到了困难。该代码呈现缩略图,但是没有任何时间。此外, View 的结果是O View 的结果。其他所有内容都可以正确获取。 entry as $e
我是一名优秀的程序员,十分优秀!