: ...but you can't simply
: FIELDNAME:*
: or
: *
That's because the Lucene query parser doesn't support 100% wildcard
queries.
: What is the best way to delete all records, for example if you want to clear
: out the entire index and reindex everything?
if you really want to make sure *EVERYTHI
It seems you can do something like
FIELDNAME:a*
and
FIELDNAME:b*
...but you can't simply
FIELDNAME:*
or
*
The demo post.sh returns Error parsing Lucene
query
and the demo Solr Admin page shows
XML Parsing Error: syntax error
Location:
http://wiki.ushmm.org:8080/solr/select/?stylesheet=&q=*&versio
On 5/22/06, Nick Snels <[EMAIL PROTECTED]> wrote:
Thanks for the answer. I don't quit get how to make a compound key (but I'll
give it a try). I have multiple tables with an id, but if I put all of them
in a Solr index, the id isn't a unique field.
You have the "different type of documents in t
Thanks for the answer. I don't quit get how to make a compound key (but I'll
give it a try). I have multiple tables with an id, but if I put all of them
in a Solr index, the id isn't a unique field. So I thought about also
storring the table name, which should make it unique.
key
Is this a
On 5/22/06, Nick Snels <[EMAIL PROTECTED]> wrote:
is it possible to define multiple uniqueKey fields in schema.xml?
Not currently, as one can normally get by with a single uniqueKey field.
If you have multiple unique key fields on each document you can make a
compound key.
If you have multiple
Hi,
is it possible to define multiple uniqueKey fields in schema.xml?
Kind regards,
Nick Snels