我正在使用这种模式:
http://localhost:8983/solr/select/?q=hello&wt=json&json.wrf=?&indent=true&hl=true&hl.fl=title
它返回如下:
?({
"response":{"numFound":100,"start":0,"docs":[
{
"id":"1234",
"title":"Something Hello"
..
..
},
... bla bla, to the end
]
})
它显然显示100 records found
在标题中,但项目{ bla bla... }
确实在just 10
里面。它确实是索引中的第 100 项。它必须准确地显示 100。
它只显示前 10 个项目吗?
我在模式中错过了什么?