0

我正在学习 solr 但有太多的歧义。

This is solr response:
http://94.229.169.64:8983/solr/collection1/search-en?q=craft%20base&wt=json

如何将内容放入新页面

我曾尝试使用 PHP Solarium,但反应不一样。

// create a client instance
$client = new Solarium_Client();

// get a select query instance
$query = $client->createSelect();

// set a query (all prices starting from 12)
$query->setQuery('craft base');

// set start and rows param (comparable to SQL limit) using fluent interface
$query->setStart(1)->setRows(20);

// set fields to fetch (this overrides the default setting 'all fields')
//$query->setFields(array('id','name','price'));

// sort the results by price ascending
$query->addSort('price', Solarium_Query_Select::SORT_ASC);

// this executes the query and returns the result
$resultset = $client->select($query);

// display the total number of documents found by solr
echo 'NumFound: '.$resultset->getNumFound(); // result = 182

但是当你点击上面的 solr URL 时,结果是 31。

你能告诉我如何得到 solr 响应吗?

谢谢

4

1 回答 1

0

嗯......听起来你的 PHP 客户端正在发出一个稍微不同的请求,以某种方式返回更多结果。

尝试使用像 wireshark 这样的工具来准确查看您的 PHP 页面向 SOLR 服务器发出的请求类型。

http://www.wireshark.org/download.html

如果您在发布您的 PHP 页面向 SOLR 服务器发出的请求后需要更多帮助,以便我们可以比较并找出差异。

于 2013-09-09T09:22:44.630 回答