Tagged Questions
0
votes
1answer
76 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
144 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
...
1
vote
1answer
302 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 ...
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 ...