Tagged Questions
2
votes
2answers
143 views
Unable to DELETE all documents in Solr4
I have a Solr 4 index that I want to delete all its documents.
Attempt #1:
http://www.domain.com:8080/solr/collection1/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E
...
0
votes
1answer
644 views
File include in Yii
I am trying to extend my yii application with solarium extension (extension for solr in php) .
However , the library for the extension had multiple sub directories . As a result I have to include ...
0
votes
1answer
191 views
php composer with solarium library
How am I supposed to use the Solarium Library https://packagist.org/packages/solarium/solarium
With PHP Composer? http://getcomposer.org/
I ran
composer require solarium/solarium
It installed ...
0
votes
1answer
390 views
Apache Solr Escape Query
I'm using Apache Solr with Solarium client library for PHP.
The problem is special character, a dash (-).
When I have a dash in my search query, I don't get any matches.
I tried to solve this by ...
2
votes
1answer
91 views
The location of the file containing the searched word (Solr with ExtractingRequestHandler)
I'm just starting Solr and using the ExtractingRequestHandler to index PDF files using the curl command:
curl "http://localhost:8983/solr/update/extract?literal.id=doc1&commit=true" -F ...
0
votes
1answer
375 views
Solr HTTP Error 'Unknown Field' Error using Solarium
I am trying to index a table from MySQL with Solarium and PHP. In order to test, I have a list of countries and have set up a core in Solr to reflect the fields I am retrieving in the query. I am ...
1
vote
1answer
388 views
Solr HTTP error: Not Found (404) using Solarium
I am using Solarium to access Solr from PHP. When I perform a normal select query using Solarium everything works fine.
Problem: When I attempt to do a MoreLikeThis query, I get the following error ...
0
votes
1answer
285 views
Convert unfamiliar data format to array/object/JSON
I am using a library (Solarium for Solr), and the results returned by it is in a format that I am not familiar with. The chunk of code below shows the output of print_r($resultset) on the results ...