Re: More Highlighting details

2019-07-25 Thread govind nitk
Regards, > Furkan KAMACI > > On Wed, Jul 24, 2019 at 9:28 PM govind nitk wrote: > > > Hi Furkan KAMACI, > > > > Thanks for your thoughts on maxAnalyzedChars. > > > > So, how can we get whether its matched or not? Is there any way to get > such > >

Re: More Highlighting details

2019-07-24 Thread govind nitk
gt; Using *hl.tag.pre* and *hl.tag.post* may help you. However you should keep > in mind that even such term exists in desired field, highlighter can use > fallback field due to *hl.maxAnalyzedChars* parameter. > > Kind Regards, > Furkan KAMACI > > On Wed, Jul 24, 2019 at 8:24 A

Re: More Highlighting details

2019-07-23 Thread govind nitk
Hi all, How about using hl.tag pre and post. If these are present then there is actually field match otherwise its default summary ? Will it work or there are some cases where it will not ? Thanks in advance. On Tue, Jul 23, 2019 at 5:48 PM govind nitk wrote: > Hi all, > > How to

More Highlighting details

2019-07-23 Thread govind nitk
Hi all, How to get more details for highlighting ? I am using hl.method=unified&&hl.fl=title,url,paragraph&hl.requireFieldMatch=true&hl.defaultSummary=true So, if query words not matched, I am getting defaultSummary, which is great. *Can we get more info saying whether it found matches or defaul

How to get spellcheck results per field in solr ?

2018-10-27 Thread govind nitk
Hi, I have done suggestion using suggest component. And the results returned are having format: suggest: { "cityname_suggest": { }, "location_suggest": {}, "area_suggest":{} } given cityname_suggest, location_suggest, area_suggest are different dictionary names. Now comparing this re

Re: Unknown field "cache"

2018-09-02 Thread govind nitk
Please metion the schema definition of date. If you edit solr schema manually, you need to reload the solr core. On Sat, Sep 1, 2018 at 3:38 AM kunhu0...@gmail.com wrote: > Hello Team, > > Need suggestions on Solr Indexing. We are using Solr-6.6.3 and Nutch 1.14. > > I see unknown field 'cache

Re: Logging Every document to particular core

2018-06-20 Thread govind nitk
Jun 13, 2018 at 5:00 PM, govind nitk > wrote: > > > Hi, > > > > Is there any way to log all the data getting indexed to a particular core > > only ? > > > > > > Regards, > > govind > > > > > > -- > Sincerely yours > Mikhail Khludnev >

Logging Every document to particular core

2018-06-13 Thread govind nitk
Hi, Is there any way to log all the data getting indexed to a particular core only ? Regards, govind

Re: FreeTextSuggester throwing error "token must not contain separator byte"

2017-07-24 Thread govind nitk
Hi Angel, please share the freesuggester defined in the config. I guess you might have mentioned whitespace as separator in the freesuggester definition as : Which is creaing the trouble. On Tue, Jul 25, 2017 at 9:01 AM, Erick Erickson wrote: > The shingle filter may use space as the sepa

Re: How to Debug Solr With Eclipse

2017-07-13 Thread govind nitk
Hi, Solr has releases, kindly checkout to the needed one. cheers On Thu, Jul 13, 2017 at 11:20 PM, Rainer Gnan wrote: > Hello community, > > my aim is to develop solr custom code (e.g. UpdateRequestProcessor) > within Eclipse AND to test the code within a debuggable solr/lucene > local instan

Re: Need domain configuration assistance

2017-07-13 Thread govind nitk
1. run solr on different port other than 8983. 2. If you are exposing it publicly, dont expose through port. But have a apache/nignx server in middle to pass traffic to solr. cheers On Thu, Jul 13, 2017 at 11:13 PM, Susheel Kumar wrote: > But don't expose Solr outside to public... > > On Thu, J

Re: suggestors on shingles

2017-07-13 Thread govind nitk
Hi Alessandro, Currently fuzzy or lookup suggester is not supporting - returning suggestions generated from the shingles at index time. As you guided, I am using FreeText suggester. But freetext suggester won't support the fuzzyness. Let me know your inputs on this edge case. Regards, Govind

Re: suggestors on shingles

2017-07-13 Thread govind nitk
Hi Alessandro, Thanks a lot. I followed your blog and able to get the suggestions. But I am curious about solr returning the tokenized data. So, lot of filtering happended, shingles are generated, now Is it possible to get those finally genrated tokens any way ? Regards, Govind On Thu, Jul 13

suggestors on shingles

2017-07-12 Thread govind nitk
Hi, I have a fieldtype "suggestion" with definition as : ** * * ** ** * * * * * * ** ** * * ** I have a field named "mysuggestion" with definition as : ** *I copy other field - names, countries, short description to "mysuggestio

Re: Boosting Documents using the field Value

2017-06-27 Thread govind nitk
Hi Erick, Finally Made it work. bf=if(exists(query($qqone)),one_score,0)&qqone=one_query:\"google cloud\" Thanks a lot for guiding, also reminding its not url escape. No analyzers used. Regards, Govind On Tue, Jun 27, 2017 at 11:01 AM, govind nitk wrote: > Hi Erick, >

Re: Boosting Documents using the field Value

2017-06-26 Thread govind nitk
specify sow=false (Split On Whitespace), > which may be a better option, see: > https://issues.apache.org/jira/browse/SOLR-9185 > > Best, > Erick > > On Mon, Jun 26, 2017 at 7:32 PM, govind nitk > wrote: > > Hi Developers, Erick > > > > I am able to add b

Re: Boosting Documents using the field Value

2017-06-26 Thread govind nitk
but not able to get it working. So, ultimate goal is when the exact query matches in field one_query, apply boost of one_score. Is there any way to do this? Or a PR is needed. Regards, Govind On Mon, Jun 26, 2017 at 11:14 AM, govind nitk wrote: > > Hi Erick, > > Exactly

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread govind nitk
Hi Alessandro, Thanks for clarification. On Mon, Jun 26, 2017 at 4:53 PM, alessandro.benedetti wrote: > " Don't use an heavy Analyzers, the suggested terms will come from the > index, > so be sure they are meaningful tokens. A really basic analyser is > suggested, > stop words and stemming ar

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread govind nitk
Hi alessandro, Really nice article. Can you brief us on "*Don't use an heavy Analyzers*" ? Regards, Govind On Mon, Jun 26, 2017 at 2:19 PM, alessandro.benedetti wrote: > Hi Angel, > your are looking for the Free Text lookup approach. > You find more info in [1] and [2] > > [1] > https://lucen

strdist function gives error

2017-06-26 Thread govind nitk
Hi Team, solr 6.5.1 on ubuntu 14.04: strdist function gives error for comparison as below: strdist(myfield,"google cloud","jw") I am getting below error: "error": {"metadata": ["error-class","org.apache.solr.common.SolrException", "root-error-class","org.apache.solr.search.SyntaxError"],"msg

Re: Boosting Documents using the field Value

2017-06-25 Thread govind nitk
er combination like that. > > On Sun, Jun 25, 2017 at 9:01 AM, govind nitk > wrote: > > Hi Erik, Thanks for the reply. > > > > My intention of using the domain_ct in the qf was, giving the weight > > present in the that document. > > > > e.g > >

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-25 Thread govind nitk
Hi Angel, Please Look at these documents. 1. https://home.apache.org/~ctargett/RefGuidePOC/jekyll-full/suggester.html 2. https://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ShingleFilterFactory Regards, Govind On Mon, Jun 26, 2017 at 3:12 AM, Angel Todorov wrote: > Hi guys, >

Re: Boosting Documents using the field Value

2017-06-25 Thread govind nitk
t&qf=category_3ct^domain_3ct&qf=category_4ct^domain_4ct ? Regards On Sat, Jun 24, 2017 at 3:42 PM, Erik Hatcher wrote: > With dismax use bf=domain_ct. you can also use boost=domain_ct with > edismax. > > > On Jun 23, 2017, at 23:01, govind nitk wrote: > > &

Boosting Documents using the field Value

2017-06-23 Thread govind nitk
Hi Solr, My Index Data: id name category domain domain_ct 1 Banana Fruits Home > Fruits > Banana 2 2 Orange Fruits Home > Fruits > Orange 4 3 Samsung Mobile Electronics > Mobile > Samsung 3 I am able to retrieve the documents with dismax parser with the weights mentioned as below. http://local

Fwd: Solr - search score and tf-idf vector from individual fields

2016-08-16 Thread govind nitk
Hi Developers, down votefavorite This is a fundamental question which I was unable to get from the solr help and other related Stackoverflow queries. I have few hundred thousand documents w