Re: Use case for the Shingle Filter

2017-03-06 Thread Ryan Yacyshyn
ely on single characters. > > > > Markus > > > > > > > > -----Original message- > > > From:Ryan Yacyshyn > > > Sent: Sunday 5th March 2017 5:57 > > > To: solr-user@lucene.apache.org > > > Subject: Use case for the Shingle

Re: Use case for the Shingle Filter

2017-03-05 Thread Ryan Josal
:Ryan Yacyshyn > > Sent: Sunday 5th March 2017 5:57 > > To: solr-user@lucene.apache.org > > Subject: Use case for the Shingle Filter > > > > Hi everyone, > > > > I was thinking of using the Shingle Filter to help solve an issue I'm > > facing. I can see this wo

RE: Use case for the Shingle Filter

2017-03-05 Thread Markus Jelsma
on single characters. Markus -Original message- > From:Ryan Yacyshyn > Sent: Sunday 5th March 2017 5:57 > To: solr-user@lucene.apache.org > Subject: Use case for the Shingle Filter > > Hi everyone, > > I was thinking of using the Shingle Filter to help sol

Re: Use case for the Shingle Filter

2017-03-04 Thread Walter Underwood
I use the shingle filter to help with the “one word or two” problem. Is it “baby sitter” or “babysitter”? With the shingle filter, searches for “babysitter” will work for content with “baby sitter”, but not the other way around. If you can identify a list of the one/two-word compounds that are

Use case for the Shingle Filter

2017-03-04 Thread Ryan Yacyshyn
Hi everyone, I was thinking of using the Shingle Filter to help solve an issue I'm facing. I can see this working in the analysis panel in the Solr admin, but not when I make my queries. I find out it's because of the query parser splitting up the tokens on white space before passing them along.