Re: One big XML file vs. many HTTP requests

2006-05-22 Thread Chris Hostetter
: ...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

Re: One big XML file vs. many HTTP requests

2006-05-22 Thread Michael Levy
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

Re: Multiple uniqueKey fields

2006-05-22 Thread Yonik Seeley
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

Re: Multiple uniqueKey fields

2006-05-22 Thread Nick Snels
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

Re: Multiple uniqueKey fields

2006-05-22 Thread Yonik Seeley
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

Multiple uniqueKey fields

2006-05-22 Thread Nick Snels
Hi, is it possible to define multiple uniqueKey fields in schema.xml? Kind regards, Nick Snels