作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用分组结果进行搜索并执行组限制时,我发现 numFound 与我不使用限制时相同。
看起来SOLR首先执行搜索并计算numFound,然后限制结果。
我不能使用分页和其他东西。
是否有任何解决方法或我错过了什么?
例子:
======================================
| id | publisher | book_title |
======================================
| 1 | A1 | Title Book |
| 2 | A1 | Book title 123 |
| 3 | A1 | My book |
| 4 | B2 | Hi book title |
| 5 | B2 | Another Book |
q=book_title:book
&group=true
&group.field=publisher
&group.limit=1
&group.main=true
"response": {
"numFound": 5,
"docs": [
{
"book_title": "My book",
"publisher": "A1"
},
{
"book_title": "Another Book",
"publisher": "B2"
}
]
}
最佳答案
将 group.ngroups 设置为 true
.
那会产生
"grouped": {
"bl_version_id": {
"matches": 53,
"ngroups": 18,
"groups": [
{
...
关于SOLR - 使用 group.limit 分组结果返回错误的 numFound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20775656/
我试着看懂solr官方教程 我查询: http://localhost:8983/solr/collection1/select/?indent=on&q=*&fl=name,id 并查看下一个响应:
当我使用分组结果进行搜索并执行组限制时,我发现 numFound 与我不使用限制时相同。 看起来SOLR首先执行搜索并计算numFound,然后限制结果。 我不能使用分页和其他东西。 是否有任何解决方
最近我的团队在 CDH 上使用 hbase-indexer 将 hbase 表列索引到 solr 。当我们部署 hbase-indexer 服务器(称为 Key-Value Store Indexer
我是一名优秀的程序员,十分优秀!