Re: Arabic words search in solr

2017-09-11 Thread mohanmca01
Hi Aman Deep Singh, Thanks for the information. We tried with EdgeNGramFilterFactory but it's not workingWe are not getting expected results. Can you please suggest us alternative possible ways.. Thanks, -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Arabic words search in solr

2017-08-13 Thread Aman Deep Singh
t": "true", > "q": "bizNameAr:(مسقط AND الات)", > "_": "1501998438821", > "wt": "json" > } > }, > "response": { > "numFound": 0, > "start": 0,

RE: Arabic words search in solr

2017-08-13 Thread mohanmca01
as well where am not typing the second word fully as in scenario’s 2 input. Below are the inputs used in both scenarios: Scenario 1: First word: مسقط Second word: الاتصال Scenario 2: First word: مسقط Second word: الات However, in our current production environment both of the above scenarios are working fine, but we have an issue of “Hamza” character where we are not getting results unless typing “Hamza” if it’s there. { "responseHeader": { "status": 0, "QTime": 9, "params": { "fl": "businessNmBl", "indent": "true", "q": "businessNmBl:شرطة إزكي", "_": "1501997897849", "wt": "json" } }, "response": { "numFound": 1, "start": 0, "docs": [ { "businessNmBl": "شرطة عمان السلطانية - قيادة شرطة محافظة الداخلية - - مركز شرطة إزكي" } ] } } Thanks, -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4350392.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Arabic words search in solr

2017-08-13 Thread Aman Deep Singh
lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4350389.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-08-13 Thread mohanmca01
Any one help me on below use case. -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4350390.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Arabic words search in solr

2017-08-13 Thread mohanmca01
Hi Aman Deep, Thanks for the information, In order to add mm=100% in the request handler, in which place ?..Can you please share me sample snap. thanks in advance. -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4350389.html Sent

RE: Arabic words search in solr

2017-08-06 Thread Aman Deep Singh
s and solution. would you please guide us on how to achieve this? also, we would like to know Instead of putting AND operator in between the words if there is another way of doing this by adding this in configuration level. thanks -- View this message in context: http://lucene.472066.n3. nabb

RE: Arabic words search in solr

2017-08-06 Thread mohanmca01
nother way of doing this by adding this in configuration level. thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4349259.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-08-06 Thread mohanmca01
: [] } } We are expecting same results in the scenario 2 as well where am not typing the second word fully as in scenario’s 2 input. Below are the inputs used in both scenarios: *Scenario 1:* First word: مسقط Second word: الاتصال *Scenario 2:* First word: مسقط Second word: الات However, in our current production environment both of the above scenarios are working fine, but we have an issue of “Hamza” character where we are not getting results unless typing “Hamza” if it’s there. { "responseHeader": { "status": 0, "QTime": 9, "params": { "fl": "businessNmBl", "indent": "true", "q": "businessNmBl:شرطة إزكي", "_": "1501997897849", "wt": "json" } }, "response": { "numFound": 1, "start": 0, "docs": [ { "businessNmBl": "شرطة عمان السلطانية - قيادة شرطة محافظة الداخلية - - مركز شرطة إزكي" } ] } } -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4349258.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-08-02 Thread Tim Casey
end. I also > have upcoming need to index Arabic words. > > -Original Message- > From: mohanmca01 [mailto:mohanmc...@gmail.com] > Sent: Thursday, 3 August 2017 12:58 a.m. > To: solr-user@lucene.apache.org > Subject: RE: Arabic words search in solr > > Hi Phil Scadden

RE: Arabic words search in solr

2017-08-02 Thread Phil Scadden
:58 a.m. To: solr-user@lucene.apache.org Subject: RE: Arabic words search in solr Hi Phil Scadden, Thank you for your reply, we tried your suggested solution by removing hyphen while indexing, but it was getting wrong results. i was searching for "شرطة ازكي" and it was showing me

RE: Arabic words search in solr

2017-08-02 Thread Allison, Timothy B.
share/blob/master/slides/TextProcessingAndAdvancedSearch_tallison_MITRE_201510_final_abbrev.pdf -Original Message- From: David Hastings [mailto:hastings.recurs...@gmail.com] Sent: Wednesday, August 2, 2017 9:00 AM To: solr-user@lucene.apache.org Subject: Re: Arabic words search in solr perh

Re: Arabic words search in solr

2017-08-02 Thread David Hastings
t;, > "_version_": 1574621133915816000 > }, > { > "id": "67011", > "bizNameAr": "بنك ظفار - فرع ازكي", > "_version_": 1574621133920010200 > } > ] > } > } > > Actually we expecting the below results only since it has both the words > that we typed while searching: > > { > "id": "28107", > "bizNameAr": "شرطة عمان السلطانية - قيادة شرطة محافظة الداخلية - > - > مركز شرطة إزكي", > "_version_": 1574621132849414100 > }, > > > Configuration: > > In schema.xml we configured as below: > > > > > positionIncrementGap="100"> > > > words="lang/stopwords_ar.txt" /> > > > > > pattern="ى" > replacement="ئ"/> > pattern="ء" > replacement=""/> > > > > > Thanks, > > > > > > -- > View this message in context: http://lucene.472066.n3. > nabble.com/Arabic-words-search-in-solr-tp4317733p4348774.html > Sent from the Solr - User mailing list archive at Nabble.com. >

RE: Arabic words search in solr

2017-08-02 Thread mohanmca01
uot;: "66821", "bizNameAr": "أطلال إزكي للتجارة", "_version_": 1574621133915816000 }, { "id": "67011", "bizNameAr": "بنك ظفار - فرع ازكي", "_version_": 1574621133920010200 } ] } } Actually we expecting the below results only since it has both the words that we typed while searching: { "id": "28107", "bizNameAr": "شرطة عمان السلطانية - قيادة شرطة محافظة الداخلية - - مركز شرطة إزكي", "_version_": 1574621132849414100 }, Configuration: In schema.xml we configured as below: Thanks, -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4348774.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Arabic words search in solr

2017-07-31 Thread Phil Scadden
terms to find the text. -Original Message- From: mohanmca01 [mailto:mohanmc...@gmail.com] Sent: Tuesday, 1 August 2017 1:18 a.m. To: solr-user@lucene.apache.org Subject: Re: Arabic words search in solr Please help me on this... -- View this message in context: http://lucene.472066.n3

RE: Arabic words search in solr

2017-07-31 Thread Phil Scadden
terms to find the text. -Original Message- From: mohanmca01 [mailto:mohanmc...@gmail.com] Sent: Tuesday, 1 August 2017 1:18 a.m. To: solr-user@lucene.apache.org Subject: Re: Arabic words search in solr Please help me on this... -- View this message in context: http://lucene.472066.n3

Re: Arabic words search in solr

2017-07-31 Thread mohanmca01
Please help me on this... -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4348372.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-07-11 Thread mohanmca01
uot;1499758649600", "wt": "json" } }, "response": { "numFound": 0, "start": 0, "docs": [] } } Please be noted that the existing configuration (which we are facing problems with Hamzzh (ء) and etc. ) on production is working with the above examples. its not working only once we implement your suggested configuration. Thanks in advance -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4345392.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-03-09 Thread Steve Rowe
Hi Mohan, Your examples refer to documents I don’t have in my 9 document set, so I recast the problem to a query/doc combo I have from earlier in this thread, and I was able to restrict hits to only documents that contained all terms from the query. If I use the query “name_ar:(شرطة ازكي)” I

Re: Arabic words search in solr

2017-03-08 Thread mohanmca01
> terms: ‘+’ before a required term, and ‘AND’ between two required terms. > ‘+’ is better - see <https://lucidworks.com/2011/ > 12/28/why-not-and-or-and-not/> for more information. > > You can also set the default operator to ‘AND’, e.g. via request parameter > “=AND” (if t

Re: Arabic words search in solr

2017-03-02 Thread Steve Rowe
Hi Mohan, > On Feb 26, 2017, at 1:37 AM, mohanmca01 wrote: > > i searched with (bizNameAr: شرطة ازكي), and am getting: > […] > > the expected result is: "id": "82", > "bizNameAr": "شرطة عمان السلطانية - قيادة > شرطة محافظة الداخلية - -

Re: Arabic words search in solr

2017-03-02 Thread mohanmca01
Hi Stave, Any update on this. -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4323005.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-25 Thread mohanmca01
it has only one word of the query (شرطة) "id": "79", "bizNameAr": "شرطة عمان السلطانية - قيادة شرطة محافظة شمال الشرقية - - مركز شرطة إبراء" It has only one word of the query (شرطة) where the above 3 records should not come in the result since already 2 words mentioned in the query, and only one record has these two words. I would really suggest if we can give you a real-time demo on our system with my Arab colleague so it can be more clear for you. let us know if we can do that. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4322354.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-23 Thread Steve Rowe
Hi Mohan, I indexed your 9 examples as simple documents after mapping dynamic field “*_ar” to the “text_ar” field type: - [{"id":"1", "name_ar":"المؤسسة التجارية العمانية"}, {"id":"2", "name_ar":"شركة التأمين الأهلية ش.م.ع.م"}, {"id":"3", "name_ar":"شرطة عمان السلطانية - قيادة شرطة محافظة

Re: Arabic words search in solr

2017-02-21 Thread mohanmca01
xlsx <http://lucene.472066.n3.nabble.com/file/n4321582/Arabic_Characters2.xlsx> thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4321582.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-21 Thread Steve Rowe
know. > > Thanks > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4321397.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-20 Thread mohanmca01
472066.n3.nabble.com/file/n4321397/Solr_Admin%281%29.png> <http://lucene.472066.n3.nabble.com/file/n4321397/Solr_Admin%282%29.png> Kindly check and let me know. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4321397.html

Re: Arabic words search in solr

2017-02-15 Thread Steve Rowe
> words="lang/stopwords_ar.txt" /> > > > > > > I attached expecting result document in previous mail thread for your > references. > > Kindly check and let me know. > > Thanks > > > > -- > View

Re: Arabic words search in solr

2017-02-14 Thread mohanmca01
this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4320427.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-14 Thread Steve Rowe
his message in context: > http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4320253.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: Arabic words search in solr

2017-02-14 Thread mohanmca01
Hi Steve, any update on this .???.. I am waiting for your inputs.. -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4320253.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-08 Thread Steve Rowe
ble.com/file/n4319436/arabicSearch.docx> > > > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4319436.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-02-08 Thread mohanmca01
if you have any background on how to implement the same. arabicSearch.docx <http://lucene.472066.n3.nabble.com/file/n4319436/arabicSearch.docx> -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4319436.html Sent from the Solr

Re: Arabic words search in solr

2017-02-02 Thread Steve Rowe
t; > regarding upgrading to the latest version, our project is running on Java > 1.7V, and if i need to upgrade then we have to upgrade Java, Application > Server JBoos, and etc. which is not that right time to do this activity at > all..!! > > > > -- > View this mes

Re: Arabic words search in solr

2017-02-01 Thread mohanmca01
which is not that right time to do this activity at all..!! -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4318227.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-01-31 Thread Steve Rowe
Mohan, I downloaded and started Solr 4.9.0 and entered your example indexed and queried words into the Admin UI’s Analysis pane using the text_ar field type. You can see the results here: . Each of the indexed words and the

Re: Arabic words search in solr

2017-01-31 Thread Erick Erickson
If you look in the upper-lerf corner of any reference guide page you'll see a link to previous versions of the docs and can download whatever version you are working with back to 4.7 IIRC. I'd download that and see if there's similar functionality. On Mon, Jan 30, 2017 at 10:19 PM, mohan sundaram

Fwd: Arabic words search in solr

2017-01-30 Thread mohan sundaram
Hi, I went through the solr references document which you shared in the link. Your shared references document pointing to solr version 6.4.0. The implemented Solr version in my project is 4.9.0. As I mentioned earlier In my solr schema.xml I defined product Arabic name field as below:

Re: Arabic words search in solr

2017-01-30 Thread mohanmca01
characters since I gave only for one character which is hamza with alef. Thanks, Mohan -- View this message in context: http://lucene.472066.n3.nabble.com/Arabic-words-search-in-solr-tp4317733p4317941.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Arabic words search in solr

2017-01-29 Thread Steve Rowe
Hi Mohan, The analyzer in your text_ar field type looks like an expanded version of the one suggested in the Solr Reference Guide[1]. Can you give an example of a query and the indexed text you expect to match but doesn't? ArabicNormalizationFilterFactory, which uses Lucene’s

Arabic words search in solr

2017-01-29 Thread mohan sundaram
Hi, In solr search I want to search with product name using Arabic letters. While searching, Arabic user can feel little default to search some product name. Because some characters need to mention while searching. Ex: إ أ آ In the above mentioned characters, user can get combination of shift