The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
44 views

Solarium filter query with OR

I want to create a filter query with Solarium, using a lot of ORs. The sql equivalent would be select * from myTable where myValue in (1,3,5,6,9); The string that I have created for my filter ...
0
votes
1answer
44 views

search key, in all fields mentioned in xml

I am new to solarium and i am using version 2. I have created the schema, and i need to know on how to pass the search key which should search in all fields OR few fields as per the xml. Ex : my ...
0
votes
0answers
4 views

Solarium not extract PDF content

Today I am using extract first time. Solarium extracts metadata from a PDF document and inserted into the index, but does not save the content. I used the example 2.7 Extract query (from Solarium ...
0
votes
0answers
155 views

nelmio/solarium vs pecl solr package or other

what do you recommend I use as a Solr client in PHP? the PECL package? solrbundle? Solarium? other? Which is better in terms of performance, use ... ? I can not find any information/comparison ...
0
votes
0answers
75 views

Solr Group By query

I have schema.xml like this: Sample data id Country State City Area 1 India abc cd mnv 15131 India Delhi HauzK asdf (from 1 ...
0
votes
1answer
69 views

Class not found when trying to index documents using Solr with Symfony2

I am very new to Solr and I am probably missing something simple however, having followed Xavier Briand's presentation I have set up Symfony2, Solarium and Nelmio\SolariumBundle. ...
0
votes
0answers
76 views

Greedy search in Apache Solr using PHP Solarium client

I am using Solr for search user data in a project. Now I want to some greedy search. EX. If I searched for text123 , then it also gave me similar results like text1234, text12, text252. Now I ...
0
votes
1answer
74 views

Lucene find index in multivalued field?

I have a multivalued field of names and I have to find the index of the matching value in the list. DOC example: profile_id: 1 names: [ "My name", "something", "My second name", "My nickname"] ...
2
votes
2answers
139 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
0answers
91 views

SOLR inconsistent search results

I have two solr instances. One is a master and the other a slave, polling the master every 20 seconds or so for index updates. My application mainly queries the slave, so most of the load falls to it. ...
1
vote
0answers
44 views

Symfony2 Solarium Class 'Solarium_Plugin_Abstract' not found

I am using https://github.com/nelmio/NelmioSolariumBundle and I am trying to conect with solarium y my symfony2 application. I have installed solarium with the composer.json but then I get Class ...
0
votes
1answer
626 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
190 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
386 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 ...
0
votes
1answer
374 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 ...
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 ...
1
vote
1answer
298 views

Unable to sort Solr Geospatial search results

How can we have Solr 3.6.1 return the Geospatial search results both filtered by bbox and sorted by distance? I tried appending a &sort=geodist() asc to the URL as stated in the Solr docs, but I ...
0
votes
0answers
199 views

multivalue in solarium library for solr

The Solarium documentation for V2 states to add multivalue you use http://wiki.solarium-project.org/index.php/V2:Read-Write_document#Multivalue_fields // create a new document for the data $doc1 = ...
1
vote
1answer
387 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 ...