Re: Dismax query special characters

2017-01-29 Thread Ahmet Arslan
Hi, I don't think dismax recognizes AND OR. Special characters for dismax are + - and quotes. In your example, ampersand may causing you trouble. Due to URL encode stuff... Ahmet On Sunday, January 29, 2017 12:17 AM, Jarosław Grązka wrote: Hi, Reading Solr documentation about dismax query

Re: Dismax query special characters

2017-01-29 Thread Jarosław Grązka
I ended up using simple query parser which probably more fits my requirements. I can use params: q.operators="" and it ignores all lucene special functionalities and take query phrase as it is. But i still think something is wrong with dismax, i use JSON instead of url params so it should not cause

Re: Upgrade SOLR version - facets perfomance regression

2017-01-29 Thread SOLR4189
Method uif: we used it also but it didn't help Cardinality: high Field Type: string, tdate DocValued: yes, for all facet fields Facet Method: fc (but tried fcs and enum) Facet Params: 1. Mincount = 1 2. Limit = 11 3. Threads = -1 4. Query (on tdate field for each query) My question: if Jso

Advanced Document Routing Questions

2017-01-29 Thread GW
Hi folks, 1: Can someone point me to some good documentation on how this works? Or is it so simple that I'm over thinking? My understanding of document routing is that I might be able to check the hash of a shard with the hash of the document id and determine the exact node / document and know ex

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 k

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 ArabicNormalizer[

Re: Advanced Document Routing Questions

2017-01-29 Thread Anshum Gupta
SolrCloud auto routes the documents to the correct shard leader, however you would be able to reduce the extra hop by sending the document to the correct shard. Here are a few posts that explain how the document routing in SolrCloud works: https://lucidworks.com/2013/06/13/solr-cloud-document-rout

Re: Commit/callbacks doesn't happen on core close

2017-01-29 Thread saiks
Hi All, We are a big public company and we are evaluating Solr to store hundreds of tera bytes of data. Post commit listeners getting called on core close is a must for us. It would be great if anyone can help us fix the issue or suggest a workaround :) Thank you -- View this message in conte

DocValues and facet searches

2017-01-29 Thread Stanislav Sandalnikov
Hello everyone, Recently we moved to DocValue fields and now we have a problem when some facet queries doesn’t work at all with facet.method different than enum, I know that enum method is more efficient for such fields than default one anyway, but I'm just curious to find out the reason. Here

How to create solr custom filter

2017-01-29 Thread Mugeesh Husain
Hi, I am looking for how to create custom filter or tokenizer, I check this blog http://solr.pl/en/2012/05/14/developing-your-own-solr-filter/ but they have not described how to setup your IDE, how to compile your code or add libs etc. I don't know how to compile code after fallowing above artic