参见英文答案 Elasticsearch query to return all records23个 我在NEST做这个查询 var result = elasticClient.SearchSearchItemClass( s= s.Index("indexName") .Type("typeName") .Query(q = q.ConstantScore(score = score.Filter(f = f.Te
我在NEST做这个查询
var result = elasticClient.Search<SearchItemClass>( s=> s.Index("indexName") .Type("typeName") .Query(q => q.ConstantScore(score => score.Filter(f => f.Term("fieldName", "term")))) );
这将默认返回10次点击.
有没有办法可以得到所有结果,没有指示.Size(值)或.Take(值)?
提前致谢!
这是 Elasticsearch query to return all records的重复.要使用扫描和滚动,请查看NEST文档 here.