Re: How to get case-sensitive Terms?

2021-02-18 Thread Alexandre Rafalovitch
Terms query does not do analysis chain, but expect tokenized values. Because it matches what is returned by faceting. So I would check whether that field is string or text and difference in processing. Enabling debug will also show difference in final expanded form. Regards, Alex P. S. It is

Re: How to get case-sensitive Terms?

2021-02-17 Thread elivis
Alexandre Rafalovitch wrote > What about copyField with the target being index only (docValue only?) and > no lowercase on the target field type? > > Solr is not a database, you are optimising for search. So duplicate, > multi-process, denormalise, create custom field types, etc. > > Regards, >

Re: How to get case-sensitive Terms?

2021-02-03 Thread Alexandre Rafalovitch
you. Could please let me know how to do this (see what each stage > >> of > >> analyzer chain does)? > >> > >> > >> > >> > >> -- > >> Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html > > Thank y

Re: How to get case-sensitive Terms?

2021-02-03 Thread elivis
)? >> >> >> >> >> -- >> Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html Thank you, Alex! We were indeed using the LowerCaseFilterFactory on the text field that I'm using, and if I remove it from the schema, I do indeed get case sensitive

Re: How to get case-sensitive Terms?

2021-02-02 Thread Alexandre Rafalovitch
It is documented in the reference guide: https://lucene.apache.org/solr/guide/8_8/analysis-screen.html Hope it helps, Alex. On Tue, 2 Feb 2021 at 00:57, elivis wrote: > > Alexandre Rafalovitch wrote > > Admin UI also allows you to run text string against a field definition to > > see what eac

Re: How to get case-sensitive Terms?

2021-02-01 Thread elivis
Alexandre Rafalovitch wrote > Admin UI also allows you to run text string against a field definition to > see what each stage of analyzer chain does. Thank you. Could you please give me some pointers how to achieve this (see what each stage of analyzer chain does in Admin UI)? -- Sent from: ht

Re: How to get case-sensitive Terms?

2021-02-01 Thread elivis
Alexandre Rafalovitch wrote > Admin UI also allows you to run text string against a field definition to > see what each stage of analyzer chain does. Thank you. Could please let me know how to do this (see what each stage of analyzer chain does)? -- Sent from: https://lucene.472066.n3.nabble.c

Re: How to get case-sensitive Terms?

2021-01-30 Thread Alexandre Rafalovitch
Check the field type and associated indexing chain in managed-schema of your core. It probably has the lowercase filter in it. Find a better type or make one yourself. Remember to reload the schema and reindex the content. Admin UI also allows you to run text string against a field definition to

How to get case-sensitive Terms?

2021-01-30 Thread elivis
I'm using Terms Component functionality (https://lucene.apache.org/solr/guide/8_4/the-terms-component.html) to get all terms from an index. However, I need the terms to be in the original case lettering (e.g. "TeSt"). So far I am only able to get lowercased terms (i.e. "test" instead of "TeSt").

Re: OR and AND queries case sensitive in q param?

2019-09-12 Thread Paras Lehana
Hey Shawn, Love your Solr articles! Just joined here. The edismax query parser supports lowercase operators, if the > lowercaseOperators parameter is set to true. I believe it defaults to > false. To add - Yes, *lowercaseOperators* defaults to *false* as per Solr Ref Guide 8.1

Re: OR and AND queries case sensitive in q param?

2019-09-12 Thread Shawn Heisey
On 9/12/2019 5:50 PM, Arnold Bronley wrote: in Solr 6.3, I was able to use OR and AND operators in case insensitive manner. The edismax query parser supports lowercase operators, if the lowercaseOperators parameter is set to true. I believe it defaults to false. Then if I pass 'rick OR mo

OR and AND queries case sensitive in q param?

2019-09-12 Thread Arnold Bronley
Hi, in Solr 6.3, I was able to use OR and AND operators in case insensitive manner. E.g. If I have two documents like following in my corpus: document 1: { id:1 author:rick } document 2: { id:2 author:morty } Then if I pass 'rick OR morty' to q param then I would get both documents back. I woul

Re: URL Case Sensitive/Insensitive

2018-12-11 Thread Walter Underwood
Lowercasing might work, it might not. Hostnames originally were case-insensitive, but that might have changed with I18N hostnames. Paths are interpreted by the web server. On Windows, paths are case-insensitive. On Unix, they are case-sensitive. Web servers might be configured to use case

RE: URL Case Sensitive/Insensitive

2018-12-11 Thread Moyer, Brett
#x27;s! Brett Moyer    -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Tuesday, December 11, 2018 12:41 PM To: solr-user Subject: Re: URL Case Sensitive/Insensitive What do you mean by "url case"? No, I'm not being snarky. The value

Re: URL Case Sensitive/Insensitive

2018-12-11 Thread Toke Eskildsen
Moyer, Brett wrote: > What is the best practice on URL case? I work with web archiving and URL-normalisation is quite a tricky thing. The software we use is https://github.com/ukwa/webarchive-discovery and in there a lot of energy has been spend on the subject. Long story short, we index 2 for

Re: URL Case Sensitive/Insensitive

2018-12-11 Thread Erick Erickson
What do you mean by "url case"? No, I'm not being snarky. The value returned in a doc is very different than the value searched. The stored data is the original input without going through any filters. If you mean the value _returned_ by Solr from a stored field, then the case is exactly what

URL Case Sensitive/Insensitive

2018-12-11 Thread Moyer, Brett
Hello, I'm new to Solr been using it for a few months. A recent question came up from our business partners about URL casing. Previously their URLs were upper case, they made a change and now all lower. Both pages/URLs are still accessible so there are duplicates in Solr. They are requesting all

Re: Make search on the particular field to be case sensitive

2017-11-10 Thread Karan Saini
>> > >> > LowerCaseFilterFactory is responsible lowercase the token coming in >> query >> > and while indexing. >> > >> > Something like this will work for you: >> > >> > > > docValues="true"/> >> > >> > > fieldType> >> > >> > I listed "KeywordTokenizerFactory" considering this is string, not text. >> > >> > More details on: https://lucene.apache.org/solr >> /guide/6_6/analyzers.html >> > >> > Amrit Sarkar >> > Search Engineer >> > Lucidworks, Inc. >> > 415-589-9269 >> > www.lucidworks.com >> > Twitter http://twitter.com/lucidworks >> > LinkedIn: https://www.linkedin.com/in/sarkaramrit2 >> > Medium: https://medium.com/@sarkaramrit2 >> > >> > On Thu, Nov 9, 2017 at 4:41 PM, Karan Saini >> wrote: >> > >> >> Hi guys, >> >> >> >> Solr version :: 6.6.1 >> >> >> >> ** >> >> >> >> I have around 10 fields in my core. I want to make the search on this >> >> specific field to be case sensitive. Please advise, how to introduce >> case >> >> sensitivity at the field level. What changes do i need to make for this >> >> field ? >> >> >> >> Thanks, >> >> Karan >> >> >> > >

Re: Make search on the particular field to be case sensitive

2017-11-10 Thread Karan Saini
de:* > > > > > > LowerCaseFilterFactory is responsible lowercase the token coming in query > > and while indexing. > > > > Something like this will work for you: > > > > > docValues="true"/> > > > > fieldType>

Re: Make search on the particular field to be case sensitive

2017-11-09 Thread Amrit Sarkar
LowerCaseFilterFactory is responsible lowercase the token coming in query > > and while indexing. > > > > Something like this will work for you: > > > > > docValues="true"/> > > > > fieldType> > > > > I listed "KeywordToke

Re: Make search on the particular field to be case sensitive

2017-11-09 Thread Erick Erickson
eywordTokenizerFactory" considering this is string, not text. > > More details on: https://lucene.apache.org/solr/guide/6_6/analyzers.html > > Amrit Sarkar > Search Engineer > Lucidworks, Inc. > 415-589-9269 > www.lucidworks.com > Twitter http://twitter.com/lucidwork

Re: Make search on the particular field to be case sensitive

2017-11-09 Thread Amrit Sarkar
is string, not text. More details on: https://lucene.apache.org/solr/guide/6_6/analyzers.html Amrit Sarkar Search Engineer Lucidworks, Inc. 415-589-9269 www.lucidworks.com Twitter http://twitter.com/lucidworks LinkedIn: https://www.linkedin.com/in/sarkaramrit2 Medium: https://medium.com/@sarkaramri

Make search on the particular field to be case sensitive

2017-11-09 Thread Karan Saini
Hi guys, Solr version :: 6.6.1 ** I have around 10 fields in my core. I want to make the search on this specific field to be case sensitive. Please advise, how to introduce case sensitivity at the field level. What changes do i need to make for this field ? Thanks, Karan

Re: Case sensitive synonym value

2017-08-23 Thread Aman Deep Singh
Hi all, Any update on this issue. -Aman On 10-Aug-2017 8:27 AM, "Aman Deep Singh" wrote: > Yes, > Ignore case is set to true and it is working fine > > > On 10-Aug-2017 12:43 AM, "Erick Erickson" wrote: > > You set ignoreCase="true" though, right? > > On Wed, Aug 9, 2017 at 8:39 AM, Aman Deep S

Re: Case sensitive synonym value

2017-08-09 Thread Aman Deep Singh
Yes, Ignore case is set to true and it is working fine On 10-Aug-2017 12:43 AM, "Erick Erickson" wrote: You set ignoreCase="true" though, right? On Wed, Aug 9, 2017 at 8:39 AM, Aman Deep Singh wrote: > Hi Erick, > I tried even before going to lowercase factory value is in lowercase > > this i

Re: Case sensitive synonym value

2017-08-09 Thread Erick Erickson
You set ignoreCase="true" though, right? On Wed, Aug 9, 2017 at 8:39 AM, Aman Deep Singh wrote: > Hi Erick, > I tried even before going to lowercase factory value is in lowercase > > this is the analysis tab result for the query iwatch > where {"iwatch":["iWatch","appleWatch"]} is configured in

Re: Case sensitive synonym value

2017-08-09 Thread Aman Deep Singh
Hi Erick, I tried even before going to lowercase factory value is in lowercase this is the analysis tab result for the query iwatch where {"iwatch":["iWatch","appleWatch"]} is configured in managed synonym ST iwatch SF *applewatch* *iwatch* PRF applewatch iwatch PRF applewatch iwatch WDF applewat

Re: Case sensitive synonym value

2017-08-09 Thread Erick Erickson
Admin/analysis is a good place to start figuring this out. For instance, do you have lowerCaseFilter configured in your analysis chain somewhere that's doing the conversion? Best, Erick On Wed, Aug 9, 2017 at 5:34 AM, Aman Deep Singh wrote: > Hi, > I'm trying to use the ManagedSynonyms with *ign

Case sensitive synonym value

2017-08-09 Thread Aman Deep Singh
Hi, I'm trying to use the ManagedSynonyms with *ignoreCase=true* It is working fine for the identifying part but the problem comes in synonym value Suppose i have a synonym *iwatch ==>appleWatch,iWatch* If the user query is *iwatch (in any case)* it was identifying the synonym and replace the toke

Solr search for PDF is case sensitive

2016-07-07 Thread rohinikrishna
search for any keyword which is directly the content of the item, I get correct result (its not case sensitive). If I give a search for a word which is in Caps in the item, i get the result. But when i search for a keyword from the associated PDF, i get case sensitive result. That is, if the word i

Re: Are the XML element names in schema.xml case sensitive?

2013-07-08 Thread Otis Gospodnetic
gt; > -Original Message- From: Alexandre Rafalovitch > Sent: Monday, July 08, 2013 7:20 AM > To: solr-user@lucene.apache.org > Subject: Re: Are the XML element names in schema.xml case sensitive? > > > But not dynamicField or any others? > > Regards, >Al

Re: Are the XML element names in schema.xml case sensitive?

2013-07-08 Thread Jack Krupansky
Nope. -- Jack Krupansky -Original Message- From: Alexandre Rafalovitch Sent: Monday, July 08, 2013 7:20 AM To: solr-user@lucene.apache.org Subject: Re: Are the XML element names in schema.xml case sensitive? But not dynamicField or any others? Regards, Alex On 7 Jul 2013 23:39

Re: Are the XML element names in schema.xml case sensitive?

2013-07-08 Thread Alexandre Rafalovitch
But not dynamicField or any others? Regards, Alex On 7 Jul 2013 23:39, "Jack Krupansky" wrote: > Yes, the XML element names (tags) and attribute names are all case > sensitive, but... Solr has a special hack for "fieldtype" as well as > "fieldType".

Re: Are the XML element names in schema.xml case sensitive?

2013-07-07 Thread Jack Krupansky
Yes, the XML element names (tags) and attribute names are all case sensitive, but... Solr has a special hack for "fieldtype" as well as "fieldType". -- Jack Krupansky -Original Message- From: Alexandre Rafalovitch Sent: Sunday, July 07, 2013 11:25 PM To: solr-us

Are the XML element names in schema.xml case sensitive?

2013-07-07 Thread Alexandre Rafalovitch
I am looking at example's schema.xml and suddenly realize that it seems to spell fieldtype definition as both fieldtype and fieldType. XML by definition is case sensitive. But is Solr? The Wiki seems to offer it both ways as well. I am curious about this for all the XML files: sol

Re: search behavior on a case-sensitive field

2012-12-03 Thread Joe Zhang
Monday, December 03, 2012 11:10 PM > To: solr-user@lucene.apache.org > Subject: search behavior on a case-sensitive field > > > I have a search like this: > >positionIncrementGap="100"> > > >

Re: search behavior on a case-sensitive field

2012-12-03 Thread Jack Krupansky
the term splitting issue. Be sure to completely reindex in either case. -- Jack Krupansky -Original Message- From: Joe Zhang Sent: Monday, December 03, 2012 11:10 PM To: solr-user@lucene.apache.org Subject: search behavior on a case-se

search behavior on a case-sensitive field

2012-12-03 Thread Joe Zhang
I have a search like this: When I query "COST", it gives reasonable results (n1); When I query "CoSt", however, it gives me n2 (>n1) results, and I can't locate actual

Re: Is SpellCheck Case Sensitive in Solr3.6.1?

2012-08-27 Thread mechravi25
Hi Kiran, Thank you so much. Its working now -- View this message in context: http://lucene.472066.n3.nabble.com/Is-SpellCheck-Case-Sensitive-in-Solr3-6-1-tp4003074p4003435.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Is SpellCheck Case Sensitive in Solr3.6.1?

2012-08-24 Thread Kiran Jayakumar
eturns many suggestions (But in both > the cases, Im getting the same search result count and its not zero). > I also tried giving a different field name as "spelling" and tried to use > the same in solrconfig.xml. This is also behaving like above > > Is spell check case sensit

Is SpellCheck Case Sensitive in Solr3.6.1?

2012-08-24 Thread mechravi25
when I try to search for "List", it returns many suggestions (But in both the cases, Im getting the same search result count and its not zero). I also tried giving a different field name as "spelling" and tried to use the same in solrconfig.xml. This is also behaving like above

Highlighting is case sensitive when search with double quote

2012-08-22 Thread vrpar...@gmail.com
when i search with "abc cde", solr will return result but highlighting portion is as per below, and when i search with "ABC cde" it will have below response ... ... ABC cde . seems highlighting returns response is case sensitive. in above both case ot

Re: Schema configurations for setting non-case sensitive search and matching partial word in a search string

2010-02-25 Thread Erick Erickson
Pipe things through LowerCaseFilterFactory to turn everything into lower case, at both index and query time, assuming you want to perform caseless matches. Depending on the behavior you want as far as "partial word matches", it depends (tm). The specific example you cite would be handled by stemmi

Schema configurations for setting non-case sensitive search and matching partial word in a search string

2010-02-25 Thread Turner, Robbin J
This is probably stated somewhere, but I've look an obviously missing it. But is there a specific field type analyzer or setting for case sensitivity? And something on the worddelimiterfilterfactor to allow for a match if it's not the whole word in the query, such as animal will match animals?

Re: case-sensitive

2009-07-15 Thread Avlesh Singh
1. Did you re-index after changing the field type? Changes would not reflect until you do this. 2. This is highly unlikely, but please make sure that you have called "text" defined in your schema.xml Cheers Avlesh On Wed, Jul 15, 2009 at 6:00 PM, Jörg Agatz wrote: > yes, thats right

Re: case-sensitive

2009-07-15 Thread Jörg Agatz
yes, thats right... i have use in al Time "string" So i dont change something, without the field like this: now i test what you say... And i become a Error

Re: case-sensitive

2009-07-15 Thread Avlesh Singh
15, 2009 at 1:42 PM, Jörg Agatz wrote: > I search for the Otions for "case-*sensitive" ore *Key* sensitive" to some > or all Fields.. > Exist a Option for that? in the Solr Schema.xml? > > Problem: > > I search in a Field for "ri*" but the real Name i

case-sensitive

2009-07-15 Thread Jörg Agatz
I search for the Otions for "case-*sensitive" ore *Key* sensitive" to some or all Fields.. Exist a Option for that? in the Solr Schema.xml? Problem: I search in a Field for "ri*" but the real Name is "RI-700690" "RI*" brings Results, but sumtimes it i

Re: How to avoid case sensitive search? use LowerCaseTokenizer

2009-03-26 Thread Otis Gospodnetic
Was writing the email and reading responses really faster than http://www.google.com/search?q=solr+case+insensitive ? :) - Original Message > From: con > To: solr-user@lucene.apache.org > Sent: Thursday, March 26, 2009 2:43:44 AM > Subject: How to avoid case sens

How to avoid case sensitive search?

2009-03-25 Thread con
-- View this message in context: http://www.nabble.com/How-to-avoid-case-sensitive-search--tp22716698p22716698.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr case sensitive searching

2008-09-21 Thread Otis Gospodnetic
Hi, Please use solr-user list instead of solr-dev. If you want the search to be case SENSITIVE then you do not want to have LowerCase* in the analyzer chain. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: mahendra mahendra <

Re: How to search Case Sensitive words?

2007-09-08 Thread nithyavembu
Hi Dona, Thanks a lot for your reply. Yeah, its with the analyzer we use for indexing and searching for case sensitive words. You are correct :-) But Even i use those types of indexing and searching i am unable to search the case sensitive words.. I am facing the problem in forming

Re: How to search Case Sensitive words?

2007-09-05 Thread Donna L Gresh
I am a pretty new user of Lucene, but I think the simple answer is "what analyzer are you using when you index" and "use the same analyzer when you search". I believe StandardAnalyzer for example does lowercasing, so if you use the same one when you search all should work as you wish.

How to search Case Sensitive words?

2007-09-05 Thread nithyavembu
Hi All, Now i am facing the problem with case sensitive text. I am indexing smaller case word but when i give the same word in upper case for search, its not getting search. Example : Indexing word : "corent" Searching word : "CORENT". If

Re: facet case sensitive

2007-08-13 Thread Ryan McKinley
Jae Joo wrote: Hi, The XML file to be indexed has Case Sensitive Ex. Computer Software I would like to have "facet by field name field1" CASE SENSITIVE and search by field1 with CASE INSENSITIVE. If I add solr.LowerCaseFilterFactory in the analyzer in both index and query, th

facet case sensitive

2007-08-13 Thread Jae Joo
Hi, The XML file to be indexed has Case Sensitive Ex. Computer Software I would like to have "facet by field name field1" CASE SENSITIVE and search by field1 with CASE INSENSITIVE. If I add solr.LowerCaseFilterFactory in the analyzer in both index and query, the query is working