Apache Solr is an open source search server based on the Lucene Java search library.
2
votes
1answer
49 views
+50
Search a multi-valued field with a self join
I have the following (simplified) solr schema:
<schema name="documents" version="1.1">
<uniqueKey>id</uniqueKey>
...
<fields>
<field
name="id"
...
1
vote
3answers
47 views
+50
Store complex (i.e. label + id) meta data in SOLR document
I use SOLR to store documents having some meta data that is composed out of multiple values. Usually an id with a label. A simple example would be the name of a city and the unique id of that city. ...