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

2007-09-12 Thread Rafał Kuć
Hello, > 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 defaul

Re: multiple indices

2007-09-12 Thread Matt Kangas
Jack, I've posted a complete recipe for running two Solr indices within one Jetty 6 container: http://wiki.apache.org/solr/SolrJetty Scroll down to the part that says: (7/2007 MattKangas) The recipe above didn't work for me with Jetty 6.1.3. ... I'm glossing over a lot of details, so atta

EmbeddedSolrServer: org.apache.solr.common.SolrException: unknown handler: /update

2007-09-12 Thread Alexey Shakov
Hi, I use EmbeddedSolrServer to communicate with solr. Query of the index works fine, but if I try add/delete, then comes "org.apache.solr.common.SolrException: unknown handler: /update" The same config as http-server works without problems. Any ideas? Thanx!

Geographic searching in solr

2007-09-12 Thread Doug Steigerwald
Not sure if this got through earlier, pine messed up... Has anyone implemented any sort of geographic searching for Solr? I've found Local Lucene (http://www.nsshutdown.com/projects/lucene/whitepaper/locallucene.htm) by Patrick O'Leary and there is another project in his CVS called Local Solr (h

Re: EmbeddedSolrServer: org.apache.solr.common.SolrException: unknown handler: /update

2007-09-12 Thread Ryan McKinley
Alexey Shakov wrote: Hi, I use EmbeddedSolrServer to communicate with solr. Query of the index works fine, but if I try add/delete, then comes "org.apache.solr.common.SolrException: unknown handler: /update" The same config as http-server works without problems. Any ideas? To get /update t

Re: EmbeddedSolrServer: org.apache.solr.common.SolrException: unknown handler: /update

2007-09-12 Thread Alexey Shakov
Ryan McKinley schrieb: > Alexey Shakov wrote: >> Hi, >> >> I use EmbeddedSolrServer to communicate with solr. >> >> Query of the index works fine, but if I try add/delete, then >> comes "org.apache.solr.common.SolrException: unknown handler: >> /update" >> >> The same config as http-server works wi

Re: [Fwd: Geographic searching in solr]

2007-09-12 Thread patrick o'leary
Doug local solr was a quick demo, but does work It was built against apache-solr-1.1.0-incubating, deployment just requires the following apache-solr-1.1.0-incubating/example/solr/lib pjaol$ ls geoapi-nogenerics-2.1-M2.jar    jsr108-0.01.jar locallucene.jar lu

Newbee seeks pointers for tracking down auto-warming error

2007-09-12 Thread Jade Rubick
Hi everyone: We are getting very frequent errors of this nature in our jetty-stdout log: SEVERE: Error during auto-warming of key: [EMAIL PROTECTED]:java.lang.NullPointerException at org.apache.lucene.search.FieldSortedHitQueue.( FieldSortedHitQueue.java:60) at org.apache.solr.searc

context-relative solr/home

2007-09-12 Thread Arnone, Anthony
Hello all, I sent this message to the Tomcat users group, and I was wondering if I’d have any more luck by asking people who might have had this problem: I’m trying to set up a system where I can deploy a single .war under multiple context names (using the ant deploy extensions). For exa

Searching Versioned Resources

2007-09-12 Thread Adrian Sutton
Hi all, The document's we're indexing are versioned and generally we only want search results to return the latest version of a document, however there's a couple of scenarios where I'd like to be able to include previous versions in the search result. It feels like a straight-forward case

Re: Searching Versioned Resources

2007-09-12 Thread climbingrose
I think you can use the CollapseFilter to collapse on "version" field. However, I think you need to modify the CollapseFilter code to sort by "version" and get the latest version returned. On 9/13/07, Adrian Sutton <[EMAIL PROTECTED]> wrote: > > Hi all, > The document's we're indexing are versione

Re: Searching Versioned Resources

2007-09-12 Thread Adrian Sutton
I think you can use the CollapseFilter to collapse on "version" field. However, I think you need to modify the CollapseFilter code to sort by "version" and get the latest version returned. Ooo, that's very cool. I assume the patches haven't actually been applied yet? This would let me just col

Re: Searching Versioned Resources

2007-09-12 Thread Adrian Sutton
On 13/09/2007, at 2:36 PM, Adrian Sutton wrote: I think you can use the CollapseFilter to collapse on "version" field. However, I think you need to modify the CollapseFilter code to sort by "version" and get the latest version returned. Ooo, that's very cool. I assume the patches haven't a