会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chester
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
11
12
13
14
15
16
17
18
19
···
43
下一页
2019年9月26日
NEST refresh flush forcemerge
摘要: public void Refresh() { client.Refresh("employee"); } public void Flush() { client.Flush("employee"); } /// <summary> /// _optimize=ForceMerge /// </summary> public void ForceMerge() { client.ForceMer
阅读全文
posted @ 2019-09-26 11:40 chester·chen
阅读(232)
评论(0)
推荐(0)
编辑
2019年9月24日
NEST dynamic 和 alias
摘要: /// <summary> /// Dynamic = false无法搜索 /// </summary> public void Dynamicmapping() { var response = client.IndexExists("employee"); if (!response.Exists) { client.CreateIndex("employee"); } client.Map<
阅读全文
posted @ 2019-09-24 16:23 chester·chen
阅读(320)
评论(0)
推荐(0)
编辑
NEST 自定义分析器
摘要: public void SetAnalysis() { if (!client.IndexExists("employee").Exists) { client.CreateIndex("employee", i => i.Settings( ...
阅读全文
posted @ 2019-09-24 11:11 chester·chen
阅读(375)
评论(0)
推荐(0)
编辑
2019年9月22日
NEST routing timeout scroll
摘要: /// <summary> /// PUT /employee/employee/9e5e50da-7740-488e-bee2-b24951435691?routing=test_routing /// </summary> public void Routing() { client.Index<employee>(new employee{first_name = "chen",last_n
阅读全文
posted @ 2019-09-22 14:04 chester·chen
阅读(247)
评论(0)
推荐(0)
编辑
2019年9月21日
NEST explain
摘要: Elasticsearch 的相似度算法 被定义为检索词频率/反向文档频率, TF/IDF ,包括以下内容: 检索词频率 检索词在该字段出现的频率?出现频率越高,相关性也越高。 字段中出现过 5 次要比只出现过 1 次的相关性高。反向文档频率 每个检索词在索引中出现的频率?频率越高,相关性越低。检索
阅读全文
posted @ 2019-09-21 10:22 chester·chen
阅读(226)
评论(0)
推荐(0)
编辑
NEST 字符串sort
摘要: text字符串sort会先分词。可先建立filed字段。并设置为keyword mapping sort
阅读全文
posted @ 2019-09-21 09:52 chester·chen
阅读(425)
评论(0)
推荐(0)
编辑
2019年9月20日
elasticsearch 查询与过滤
摘要: 查询和过滤器上下文 查询子句的行为取决于它是在查询上下文中使用还是在过滤器上下文中使用: 查询上下文 查询上下文中使用的查询子句回答了“这个文档与这个查询子句的匹配程度如何?”,除了决定文档是否匹配之外,查询子句还计算一个表示文档匹配程度的_score,相对于其他文档。 当查询子句被传递给query
阅读全文
posted @ 2019-09-20 11:14 chester·chen
阅读(2031)
评论(0)
推荐(0)
编辑
2019年9月19日
NEST analyze与mapping
摘要: /// <summary> /// POST /_analyze?pretty=true /// POST /employee/_analyze /// </summary> public void Analyze() { client.Analyze(x => x.Analyzer("standard").Text("Text to analyze").Pretty()); client.Ana
阅读全文
posted @ 2019-09-19 19:07 chester·chen
阅读(424)
评论(0)
推荐(0)
编辑
NEST 多IndexType与分页
摘要: /// /// POST /_all/employee/_search?typed_keys=true /// public void AllIndex() { client.Search(s => s.AllIndices().Query(q => q.Match(m => m.Field...
阅读全文
posted @ 2019-09-19 12:15 chester·chen
阅读(556)
评论(0)
推荐(0)
编辑
2019年9月18日
NEST 增删改查
摘要: /// /// HEAD /employee/employee/1 /// public void DocumentExists() { var response = client.DocumentExists("1一狮"); Console.WriteLine(J...
阅读全文
posted @ 2019-09-18 17:40 chester·chen
阅读(1379)
评论(0)
推荐(0)
编辑
上一页
1
···
11
12
13
14
15
16
17
18
19
···
43
下一页