Index replication on windows

2008-02-02 Thread Andy Olliver
Hi I need to find a way to achieve effective index replication on a windows environment. From previous posts, I understand that the issue preventing the current solution from working stems from windows support of hard links. Has anyone made any progress on solving this issue? Or can anyone giv

SpanQuery support

2008-02-02 Thread Renaud Delbru
Hi, Do you know if it is currently possible to use the SpanQuery feature of Lucene in Solr 1.3. We would like to use nested span queries such as (("A B") near ("C D")). Do a request handler support such feature ? Or, any idea how could we perform ? Regards. -- Renaud Delbru

Re: SpanQuery support

2008-02-02 Thread Yonik Seeley
Solr 1.3 will have query parser plugins... so you could write your own parser that utilized span queries. -Yonik On Feb 2, 2008 2:48 PM, Renaud Delbru <[EMAIL PROTECTED]> wrote: > Do you know if it is currently possible to use the SpanQuery feature of > Lucene in Solr 1.3. We would like to use nes

Re: SpanQuery support

2008-02-02 Thread Renaud Delbru
Thanks Yonik, I was looking at the discussion of SOLR-281. If I understand correctly, the task would be to write my own search component class, SpanQueryComponent that extends the SearchComponent class, then overwriting the declaration of the "query searchComponent" in solrconfig.xml: Then,

Re: wildcard newbie question

2008-02-02 Thread Erik Hatcher
My hunch is that your courseTitle field is being stemmed. What type is it and what is the definition of that type? "Struts" indexed with stemming would be "strut", thus no "struts*" words exist in the index. It's a tricky situation to deal with wildcards with such indexing analysis.