RE: Lock obtain timeout

2007-01-15 Thread Stephanie Belton
Thanks for that - I have made the following changes: - optimize more often - omitNorms on all non-fulltext fields - useCompoundfFile=true (will keep an eye on performance) And that seems to have solved the problem. -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED]

Re: Does Solr support integration with the Compass framework?

2007-01-15 Thread Graham O'Regan
Hi Marios, It can store the index in a database, but I wouldn't want to use that route myself. Here is a quick link to the docs which provides an over-view of the transactional features;

Re: Does Solr support integration with the Compass framework?

2007-01-15 Thread Ryan McKinley
On 1/15/07, Lukas Vlcek [EMAIL PROTECTED] wrote: Ryan, Could you be more specific on your statement? On 1/12/07, Ryan McKinley [EMAIL PROTECTED] wrote: I started using compass a few months back. It is an amazing system: with almost no effort, it just works. BUT the showstopper (for me)

Re: XML querying

2007-01-15 Thread Thorsten Scherler
On Mon, 2007-01-15 at 12:23 +, Luis Neves wrote: Hello. What I do now to index XML documents it's to use a Filter to strip the markup, this works but it's impossible to know where in the document is the match located. What would it take to make possible to specify a filter query that

Re: XML querying

2007-01-15 Thread Luis Neves
Hi! Thorsten Scherler wrote: On Mon, 2007-01-15 at 12:23 +, Luis Neves wrote: Hello. What I do now to index XML documents it's to use a Filter to strip the markup, this works but it's impossible to know where in the document is the match located. What would it take to make possible to

Re: One item, multiple fields, and range queries

2007-01-15 Thread Jeff Rodenburg
Thanks Hoss. Interesting approach, but the N bound could be well in the hundreds, and the N bound would be variable (some maximum number, but different across events.) I've not yet used dynamic fields in this manner. With that number range, what limitations could I encounter? Given the size

Re: One item, multiple fields, and range queries

2007-01-15 Thread Chris Hostetter
: I've not yet used dynamic fields in this manner. With that number range, : what limitations could I encounter? Given the size of that, I would need very little, yonik recently listed the costs of dynamic fields...

Re: Faceting question...

2007-01-15 Thread Chris Hostetter
: fieldtype name=string class=solr.StrField sortMissingLast=true : omitNorms=true/ : field name=child_catname type=text indexed=true stored=true/ your fhild_catname isn't using string as it's field type -- it's using text (which is most likely using TextField and being tokenized) -Hoss

Re: Faceting question...

2007-01-15 Thread escher2k
Thanks Chris. DUMB of me not to have noticed. Chris Hostetter wrote: : fieldtype name=string class=solr.StrField sortMissingLast=true : omitNorms=true/ : field name=child_catname type=text indexed=true stored=true/ your fhild_catname isn't using string as it's field type -- it's using

Apostrophes in fields

2007-01-15 Thread Nick Jenkin
Hi This is probably more of a lucene question, but: I have an author field, If I query author:Shelley Ohara - no results are returned If I query author:Shelley O'hara - many results are returned, Is it possible, to get solr to ignore apostrophes in queries like the one above? e.g. doc doc arr

Re: document support for file system crawling

2007-01-15 Thread Chris Hostetter
: In that respect I agree with the original posting that Solr lacks : functionality with respect to desired functionality. One can argue that : more or less random data should be structured by the user writing a : decent application. However a more easy to use and configurable plugin :

Re: Trouble with data type in schema

2007-01-15 Thread Mike Klaas
On 1/15/07, Phil Rosen [EMAIL PROTECTED] wrote: I am trying to construct a data type that given the content: ID-111 would match on either ID or 111 Text and string wont do this, any suggestions? The text field as defined by Solr example's schema.xml should achieve this effect. Have you

separate log files

2007-01-15 Thread Ben Incani
Hi Solr users, I'm running multiple instances of Solr, which all using the same war file to load from. Below is an example of the servlet context file used for each application. Context path=/app1-solr docBase=/var/usr/solr/solr-1.0.war debug=0 crossContext=true Environment