post the output of a URL to solr

2006-11-30 Thread Bess Sadler
I think there must be a way to do this because I think I've seen references to it, but I cannot find the proper syntax anywhere. Can I post the output of a URL to solr? That is to say, if I have a webapp that is generating the solr indexable files (e.g., http://localhost:

Re: post the output of a URL to solr

2006-11-30 Thread Bertrand Delacretaz
On 11/30/06, Mike Klaas [EMAIL PROTECTED] wrote: ...Try something like: wget http://localhost:/gaz/solr/f0.xml -O - | curl http://localhost:8983/solr/update --data-binary - -H 'Content-type:text/xml; charset=utf-8' and if you use curl you can use it on both sides to avoid the dependency

Re: Using dismax to find multiple terms across multiple fields

2006-11-30 Thread Yonik Seeley
On 11/30/06, Stephanie Belton [EMAIL PROTECTED] wrote: I am using Solr to index and search documents in Russian. I have successfully set up the RussianAnalyzer but found that it eliminates some tokens such as numbers. You can get better control (and avoid having numbers removed) by using

Re: Using dismax to find multiple terms across multiple fields

2006-11-30 Thread Chris Hostetter
: You are including the russian stemmed fields in the dismax query, and : the analysis of those fields discards numbers, hence 1970 is ignored, : right? Either querying only the literals, or fixing the stemmed text : to not discard numbers may help (or get you further along at least). more