Re: Strange behaviour building a query: SynonymQuery

2019-04-04 Thread Erick Erickson
Thanks for letting us know!

> On Apr 4, 2019, at 8:40 AM, rodio  wrote:
> 
> Hi all!
> 
> It's solved!
> 
> I have seen that we are using a deprecated version!
> 
> Use WordDelimiterGraphFilterFactory instead of WordDelimiterFilterFactory
> solves the problem
> 
> https://lucene.apache.org/solr/guide/7_2/filter-descriptions.html#word-delimiter-filter
> https://lucene.apache.org/solr/guide/7_2/filter-descriptions.html#word-delimiter-graph-filter
>  
> 
> name:whatever (name:7893ght23 (+name:7893 +name:ght +name:23))
> 
> Regards
> 
> 
> 
> 
> 
> 
> --
> Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html



Re: Strange behaviour building a query: SynonymQuery

2019-04-04 Thread rodio
Hi all!

It's solved!

I have seen that we are using a deprecated version!

Use WordDelimiterGraphFilterFactory instead of WordDelimiterFilterFactory
solves the problem

https://lucene.apache.org/solr/guide/7_2/filter-descriptions.html#word-delimiter-filter
https://lucene.apache.org/solr/guide/7_2/filter-descriptions.html#word-delimiter-graph-filter
 

name:whatever (name:7893ght23 (+name:7893 +name:ght +name:23))

Regards






--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html


Strange behaviour building a query: SynonymQuery

2019-04-04 Thread rodio
Hi all,

This is my first question in this forum, i'm newbye with Solr so I would be
very glad if someone can resolve my doubt.

We are evaluating new version of Solr 8

The problem is that when we build a query using WordDelimiterFilterFactory
with preserveOriginal = 1, the parsed query has a behaviour not expected.

The example could be:

/name:(Whatever 7893GHT23)/

The parsed query returns: 

/name:whatever Synonym(name:7893 name:7893ght23) name:ght name:23/

The expected parsed query must be:

/name:whatever Synonym(name:7893 name:7893ght23 name:ght name:23)/

We have tried to use synonymQueryStyle attribute with differents values in
TypeField without success, always get only two terms!!!


/
  






  
  





  
/

We have an old Solr (version 3.6), that builds the query properly:

/name:whatever (name:7893ght23 name:7893 name:ght name:23)/

It would be great if anyone knows what could be happen

Thanks in advance!!!






--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html