Re: Searching similar values for same field results in different results

2011-01-06 Thread PeterKerk
That was it! thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/Searching-similar-values-for-same-field-results-in-different-results-tp2199269p2206087.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Searching similar values for same field results in different results

2011-01-06 Thread Juan Grande
You have a problem with the analysis chain. When you do a query, the EnglishPorterFilter is cutting off the last part of your word, but you're not doing the same when indexing. I think that removing that filter from the chain will solve your problem. Remember that there are two different analysis

Re: Searching similar values for same field results in different results

2011-01-06 Thread PeterKerk
@iorixxx: I ran: http://localhost:8983/solr/db/update/?optimize=true This is the response: 0 58 Then I ran: http://localhost:8983/solr/db/select/?indent=on&facet=on&q=*:*&facet.field=themes_raw This is response: 366

Re: Searching similar values for same field results in different results

2011-01-05 Thread Erick Erickson
Often adding &debugQuery=on to the URL can show you very useful information that helps pinpoint the problem. I confess I don't see anything amiss in what you've shown though. Also, look at the "schema browser" page off the admin page, and look at your "themes" field to see what is actually in your

Re: Searching similar values for same field results in different results

2011-01-05 Thread Ahmet Arslan
> > uhm...how do I perform an optimize operation? :) http://localhost:8983/solr/db/update/?optimize=true

Re: Searching similar values for same field results in different results

2011-01-05 Thread PeterKerk
uhm...how do I perform an optimize operation? :) -- View this message in context: http://lucene.472066.n3.nabble.com/Searching-similar-values-for-same-field-results-in-different-results-tp2199269p2199795.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Searching similar values for same field results in different results

2011-01-05 Thread Ahmet Arslan
> Something weird is happening. > > I have locations that can have 1 or more themes. > A theme can be: "Kasteel en Landgoed", or a theme can be > "Strand en Zee" > > I checked in the database, there are many locations that > have 1 or more of > these themes assigned to it. > > Also in the respon