Synonyms expressions sens

2007-09-11 Thread Laurent Gilles
Hi, I'm actually facing a relevancy issue with multiword synonyms. Let's expose it by a test case: Giving the following synonyms definitions: capital punishement, death sentence, death penalty

RE: Solr and KStem

2007-09-11 Thread Wagner,Harry
Bill, Currently it is a plug-in. Put the lower case filter ahead of kstem, just as for porter (example below). You can use it with porter, but I can't imagine why you would want to. At least not in the same analyzer. Hope this helps. fieldtype name=text_kstem class=solr.TextField

Re: Synonyms expressions sens

2007-09-11 Thread Grant Ingersoll
Inline... On Sep 11, 2007, at 7:27 AM, Laurent Gilles wrote: Hi, I'm actually facing a relevancy issue with multiword synonyms. Let's expose it by a test case: Giving the following synonyms definitions: capital

Using Ruby to POST to Solr

2007-09-11 Thread Matt Mitchell
Hi, I just posted this to the ruby/google group. It probably belongs here! Also, anyone know exactly what the @ symbol in the curl command is doing? Thanks, Matt I've got a script that uses curl, and would like (for educational purposes mind you) to use ruby instead. This is the curl

Re: Using Ruby to POST to Solr

2007-09-11 Thread Michael Kimsal
The curl man page states: If you start the data with the letter @, the rest should be a file name to read the data from, or - if you want curl to read the data from stdin. The contents of the file must already be url-encoded. Multiple files can also be specified.

Is there a way to change default filter query parser operator

2007-09-11 Thread Rafał Kuć
Hello, I have a question regarding filter query default operator. Is there a way, to change the default filter query parser operator. As i know it`s being set to 'OR' regardless of what the solrconfig says. Thanks in advance -Rafal

Re: Using Ruby to POST to Solr

2007-09-11 Thread Matt Mitchell
Hi Michael, Thanks for that. I've got something that's working now: data = File.read('my_solr_docs.xml') url = URI.parse('http://localhost:8080/my_solr/update') http = Net::HTTP.new(url.host, url.port) response, body = http.post(url.path, data, {'Content-type'='text/ xml; charset=utf-8'})

multiple indices

2007-09-11 Thread Jack L
I was going through some old emails on this topic. Rafael Rossini figured out how to run multiple indices on single instance of jetty but it has to be jetty plus. I guess jetty doesn't allow this? I suppose I can add additional jars and make it work but I haven't tried that. It'll always be much

Re: Solr 1.2 or nightly?

2007-09-11 Thread Ryan McKinley
Jack L wrote: Hi, I'm about to start a new solr installation. Given the good quality of development builds in the past, should I use 1.2 or just grab a nightly build? Unless you *need* the new features in trunk, stick with 1.2 While we aim to keep the trunk functioning properly, the API's,

Re: Using Ruby to POST to Solr

2007-09-11 Thread Erik Hatcher
Matt, Try this instead: gem install solr-ruby # ;) Then in irb or wherever: solr = Solr::Connection.new(http://localhost:8983/solr;) solr.add(:id = 123, :title = insert title here) solr.commit solr.query(title) Visit us over on the [EMAIL PROTECTED] e-mail list for more on

Re: Solr commit takes too long

2007-09-11 Thread Erick Erickson
Is there any chance you're optimizing each time you commit? Erick On 9/10/07, Marius Hanganu [EMAIL PROTECTED] wrote: Hi, We're having a problem when commiting to SOLR. Our application commits right after each update - we need the data to be available instantaneously. The index' size is

Re: Using Ruby to POST to Solr

2007-09-11 Thread Matt Mitchell
Yes! Beautiful. I'll be checking that out. matt On Sep 11, 2007, at 12:18 PM, Erik Hatcher wrote: Matt, Try this instead: gem install solr-ruby # ;) Then in irb or wherever: solr = Solr::Connection.new(http://localhost:8983/solr;) solr.add(:id = 123, :title = insert title here)

Re: Is there a way to change default filter query parser operator

2007-09-11 Thread Mike Klaas
On 11-Sep-07, at 7:53 AM, Rafał Kuć wrote: Hello, I have a question regarding filter query default operator. Is there a way, to change the default filter query parser operator. As i know it`s being set to 'OR' regardless of what the solrconfig says. Nope. The default query parser

Re: Solr 1.2 or nightly?

2007-09-11 Thread Mike Klaas
On 11-Sep-07, at 8:33 AM, Jack L wrote: Hi, I'm about to start a new solr installation. Given the good quality of development builds in the past, should I use 1.2 or just grab a nightly build? Probably 1.2, unless you need new features. Note that there has been a lot of major work

Re: Solr commit takes too long

2007-09-11 Thread Mike Klaas
On 10-Sep-07, at 4:07 AM, Marius Hanganu wrote: Hi, We're having a problem when commiting to SOLR. Our application commits right after each update - we need the data to be available instantaneously. The index' size is about 166M, Solr has 1024M on a dual quad. The update takes a few

Re: multiple indices

2007-09-11 Thread Mike Klaas
On 11-Sep-07, at 8:52 AM, Jack L wrote: I was going through some old emails on this topic. Rafael Rossini figured out how to run multiple indices on single instance of jetty but it has to be jetty plus. I guess jetty doesn't allow this? I suppose I can add additional jars and make it work

Re: New user question: How to show all stored fields in a result

2007-09-11 Thread melkink
Erik Hatcher wrote: melkink - are you using solr-ruby? If so, that bug has been fixed in later versions ;) Erik Erik, Indeed I am! Thanks for letting me know that there's a new version available that fixes this bug. Like I said I'm a bit of noob when it comes to both

Re[2]: multiple indices

2007-09-11 Thread Jack L
Hello Mike, but it is still just an example application. I think this is a very modest statement. I'd like to say both solr (including the example) and jetty are production level software. I suppose many users, like me, will just take it and make minimum modification of the configs and use it

RE: multiple indices

2007-09-11 Thread George Aroush
I was going through some old emails on this topic. Rafael Rossini figured out how to run multiple indices on single instance of jetty but it has to be jetty plus. I guess jetty doesn't allow this? I suppose I can add additional jars and make it work but I haven't tried that. It'll

Re: multiple indices

2007-09-11 Thread Mike Klaas
On 11-Sep-07, at 3:32 PM, George Aroush wrote: The example that comes with Solr is meant to be a starting point for users. It is a relatively functional and well-commented example, and its config files are pretty much the canonical documentation for solr config, and for many people they can

Re: New user question: How to show all stored fields in a result

2007-09-11 Thread Erik Hatcher
On Sep 11, 2007, at 5:13 PM, melkink wrote: Erik Hatcher wrote: melkink - are you using solr-ruby? If so, that bug has been fixed in later versions ;) Erik Erik, Indeed I am! Thanks for letting me know that there's a new version available that fixes this bug. Like I