Documents with multiple values in a certain field

2013-06-11 Thread Silvio Hermann
Hello, is there a way to get all documents where a certain field has multiple entries? best, Silvio

Re: Search identifier fields containing blanks

2013-05-08 Thread Silvio Hermann
/select?q={!term+f=yourFieldName}G+23/60+12 -Hoss -- Silvio Hermann Friedrich-Schiller-Universität Jena Thüringer Universitäts- und Landesbibliothek Bibliotheksplatz 2 07743 Jena Phone: +49 3641 940019 FAX: +49 3641 940022 http://www.historische-bestaende.de

Re: Search identifier fields containing blanks

2013-05-08 Thread Silvio Hermann
g, use the term QParser... {!term f=yourFieldName}G 23/60 12 Of course, if you are putting this in a URL (ie: testing in a browser) it still needs to be URL escaped... /select?q={!term+f=yourFieldName}G+23/60+12 -Hoss -- Silvio Hermann Friedrich-Schiller-Universität

Search identifier fields containing blanks

2013-05-07 Thread Silvio Hermann
Hello, I am about to index identfier fields containing blanks (shelfmarks) eg. G 23/60 12 The field type is set to Solr.string. To get the exact matching hit (the doc with shelfmark mentioned above) the user must quote the search term. Is there a way to omit the quotes? Best, Silvio

Re: Keeping query index until a complete reindex is done

2013-03-21 Thread Silvio Hermann
3. with a SWAP or simmilar command the old index is dropped and all query/index stuff is handled by the new index Thanks in advance Silvio on behalf of Matthias Eichner -- Silvio Hermann Friedrich-Schiller-Universität Jena Thüringer Universitäts- und Landesbibliothek Bibliotheksplatz

Keeping query index until a complete reindex is done

2013-03-20 Thread Silvio Hermann
Hi there is solr capable of keeping a query index until a complete reindex is done (within a single core)? I think something of: 1. start reindex/rebuild through a REST push (not the data import handler) 2. solr starts indexing on a fresh index queries are handled by the old index 3. w