Re: partial search help request

2020-08-05 Thread Philip Smith
Great advice Erick, kindly appreciated. I removed PorterStemFilter as you suggested and it worked as one would expect it to. Very useful to learn about avoiding KeywordTokenizerFactory, the limitation of the WhitespaceTokenizer and the testing approach. Best, Phil On Wed, Aug 5, 2020 at 8:37 PM

Re: partial search help request

2020-08-05 Thread Erick Erickson
First of all, lots of attachments are stripped by the mail server so a number of your attachments didn’t come through, although your field definitions did so we can’t see your results. KeywordTokenizerFactory is something I’d avoid at this point. It doesn’t break up the input at all, so input o

Re: partial search help request

2020-08-05 Thread Philip Smith
Hello, I've had a break-through with my partial string search problem, I don't understand why though. I found yet another example, https://medium.com/aubergine-solutions/partial-string-search-in-apache-solr-4b9200e8e6bb and this one uses a different tokenizer, whitespaceTokenizerFactory

partial search help request

2020-08-05 Thread Philip Smith
Hello, I'm new to Solr and to this user group. Any help with this problem would be greatly appreciated. I'm trying to get partial keyword search results working. This seems like a fairly common problem, I've found numerous google results offering solutions for instance https://stackoverflow.com/qu

Re: Search Help

2018-05-07 Thread Shawn Heisey
On 5/7/2018 8:09 AM, natejasper wrote: I'm setting up SOLR on an internal website for my company and I would like to know if anyone can recommend an analytics that I can see what the users are searching for? Does the log in SOLR give me that information? Unless the logging configuration is chan

Search Help

2018-05-07 Thread natejasper
Hello all here, I'm setting up SOLR on an internal website for my company and I would like to know if anyone can recommend an analytics that I can see what the users are searching for? Does the log in SOLR give me that information? Thanks for your time, -- Sent from: http://lucene.472066.n3.n

RE: negation search help

2016-11-23 Thread Allison, Timothy B.
addons%7C6.3-0.1%7Cpom -Original Message- From: Alexandre Rafalovitch [mailto:arafa...@gmail.com] Sent: Wednesday, November 23, 2016 10:03 AM To: solr-user Subject: Re: negation search help Well, then 'no' becomes a signal token. So, the question is how many tokens after that

Re: negation search help

2016-11-23 Thread Rafa Haro
nformation for certain symptoms, the mentions likes "no headache" , "no > blood loss", "not diabetic" should not show up in the search results. > > > > Thanks > > > > > > -Original Message- > > From: Alessandro Benedetti [mailto:be

Re: negation search help

2016-11-23 Thread Alessandro Benedetti
", "not diabetic" should not show up in the search results. > > > > Thanks > > > > > > -----Original Message- > > From: Alessandro Benedetti [mailto:benedetti.ale...@gmail.com] > > Sent: Wednesday, November 23, 2016 8:22 AM > > To: solr-u

Re: negation search help

2016-11-23 Thread Alexandre Rafalovitch
essage- > From: Alessandro Benedetti [mailto:benedetti.ale...@gmail.com] > Sent: Wednesday, November 23, 2016 8:22 AM > To: solr-user@lucene.apache.org > Subject: Re: negation search help > > Now that I read better, do you mean that at indexing time those negations > must be r

RE: negation search help

2016-11-23 Thread Hem Naidu
--- From: Alessandro Benedetti [mailto:benedetti.ale...@gmail.com] Sent: Wednesday, November 23, 2016 8:22 AM To: solr-user@lucene.apache.org Subject: Re: negation search help Now that I read better, do you mean that at indexing time those negations must be recognized, in the way that they are no match ? Cheers

Re: negation search help

2016-11-23 Thread Alessandro Benedetti
Now that I read better, do you mean that at indexing time those negations must be recognized, in the way that they are no match ? Cheers On Wed, Nov 23, 2016 at 2:20 PM, Alessandro Benedetti < benedetti.ale...@gmail.com> wrote: > Hi Hem, > are you expecting Solr to parse your natural language qu

Re: negation search help

2016-11-23 Thread Alessandro Benedetti
Hi Hem, are you expecting Solr to parse your natural language query out of the box ? Are you using any custom query parser ? If not, you need to follow the lucene Syntax to define engative queries. And be careful to the edge cases [1] . Cheers [1] https://wiki.apache.org/solr/NegativeQueryProbl

Re: negation search help

2016-11-23 Thread Hem Naidu
Alex Whenever the keywords or sentence followed by "no", "not", etc should be excluded from the search results. Does solr support this feature? Thanks Sent from my iPhone > On Nov 23, 2016, at 12:09 AM, Alexandre Rafalovitch > wrote: > > How do you _know_ it is not 'apparent' ? Is it beca

Re: negation search help

2016-11-22 Thread Alexandre Rafalovitch
How do you _know_ it is not 'apparent' ? Is it because it is preceded by the keyword 'no'? Just that keyword? At what maximum distance? Regards, Alex On 23 Nov 2016 2:59 PM, "Hem Naidu" wrote: > Gurus, > > I am new to Solr, I have a requirement to index entire pdf/word documents > using Solr

negation search help

2016-11-22 Thread Hem Naidu
Gurus, I am new to Solr, I have a requirement to index entire pdf/word documents using Solr Tika. Which was successful and able to get the search results displayed. Now I need to fine tune the results or adjust index so the negative statements should be filtered out the results like my input text

Re: Multi language search help

2008-12-19 Thread Sujatha Arun
Thanks Grant, The requirement from the user end is to only search in that particular language and not across languages. Also going forward we will be adding more languages. so if i have separate fields for each language ,then we need to change the schema everytime and that will not scale very we

Re: Multi language search help

2008-12-18 Thread Grant Ingersoll
On Dec 18, 2008, at 6:25 AM, Sujatha Arun wrote: Hi, I am prototyping lanuage search using solr 1.3 .I have 3 fields in the schema -id,content and language. I am indexing 3 pdf files ,the languages are foroyo,chinese and japanese. I use xpdf to convert the content of pdf to text and pu

Multi language search help

2008-12-18 Thread Sujatha Arun
Hi, I am prototyping lanuage search using solr 1.3 .I have 3 fields in the schema -id,content and language. I am indexing 3 pdf files ,the languages are foroyo,chinese and japanese. I use xpdf to convert the content of pdf to text and push the text to solr in the content field. What is the anal