Letter-number transitions - can this be turned off

2007-09-30 Thread F Knudson

Is there a flag to disable the letter-number transition in the
solr.WordDelimiterFilterFactory?  We are indexing category codes, thesaurus
codes for which this letter number transition makes no sense.  It is
bloating the indexing (which is already large).

Thanks
F Knudson
-- 
View this message in context: 
http://www.nabble.com/Letter-number-transitions---can-this-be-turned-off-tf4544769.html#a12969359
Sent from the Solr - User mailing list archive at Nabble.com.



Re: Dismax and Grouping query

2007-09-30 Thread Ty Hahn
Thanks, Hoss.
It seems that I should think other options.
Thanks again.


On 9/29/07, Chris Hostetter <[EMAIL PROTECTED]> wrote:
>
>
> : I've tried to use grouping query on DisMaxRequestHandler without
> success.
>
> : e.g.
> : When I send query like +(lucene solr),
> : I can see following line in the result page.
> : +\(lucene solr\)
>
> the dismax handler does not consider parens to be special characters.  if
> it did, it's not clear what the semantics would be of a query like...
> q=A +(B C)qf=X Y Z
> ..when building the query structure ... what happens if X:B exists and Y:C
> exists? is that considered a match?
>
> Generally, the "mm" param is used to indicate how many of the query terms
> (that don't have a + or - prefix) are required, or you can explicitly
> require/prohibit a term using + or -, but there is no way to require that
> one of N sub terms is required (prohibiting any of N sub terms is easy,
> just prohibit them all individually)
>
>
>
> -Hoss
>
>