作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将我的应用程序从Nest版本6.8更新到7.3,发现当前不支持AnalyzeAsync方法。什么是以下代码的替代品?
var analyzeRequest = new AnalyzeRequest(_elasticSearchSettings.PatentFamilyIndexName)
{
Analyzer = analyzer,
Text = new[] {wordsList}
};
var analyzeResponse = await ElasticClient.AnalyzeAsync(analyzeRequest)
最佳答案
借助NEST 7.x,API方法已被归入与Thery相关的功能范围内
var client = new ElasticClient();
var analyzeRequest = new AnalyzeRequest(_elasticSearchSettings.PatentFamilyIndexName)
{
Analyzer = analyzer,
Text = new[] { wordsList }
};
var analyzeResponse = await client.Indices.AnalyzeAsync(analyzeRequest);
关于elasticsearch - NEST 7.x中的AnalyzeAsync的替代品是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57866226/
我是一名优秀的程序员,十分优秀!