Re: Solr highlight

2016-02-02 Thread Anil
no df, but hl.fl is * and docId is string field. On 2 February 2016 at 11:01, Zheng Lin Edwin Yeo wrote: > Do you have any setting for "df" and "hl.fl: under your /highlight request > handler in your solrconfig.xml? And which version of Solr are you using? > > Regards, > Edwin > > On 2 February

Re: Solr highlight

2016-02-01 Thread Zheng Lin Edwin Yeo
Do you have any setting for "df" and "hl.fl: under your /highlight request handler in your solrconfig.xml? And which version of Solr are you using? Regards, Edwin On 2 February 2016 at 12:54, Anil wrote: > HI, > > Any info on below ? > > Regards, > Anil > > On 1 February 2016 at 20:53, Anil wr

Re: Solr highlight

2016-02-01 Thread Anil
HI, Any info on below ? Regards, Anil On 1 February 2016 at 20:53, Anil wrote: > HI, > > We have five shards and 2 replicas and using collection aliases. > > I have set hl=true in my query to search against all fields of solr > document . > > i am searching a text (ex:2010-0561-T-0312) on all

Re: solr highlight problem

2012-10-11 Thread Maurizio Cucchiara
What do you mean by missing vicky? Did you mean a second fragment? Sent from my mobile device, so please excuse typos and brevity. Maurizio Cucchiara Il giorno 12/ott/2012 08.42, "rayvicky" ha scritto: > sb.append("title:test vicky"); > SolrQuery query = new SolrQuery(); > query.setQuery(sb.toS

Re: Solr Highlight Component

2011-05-24 Thread Mike Sokolov
A possible workaround is to re-fetch the documents in your result set with a query that is: +id=(id1 or id2 or ... id20) () where id1..20 are the doc ids in your result set would require two round-trips though -Mike On 05/24/2011 08:19 AM, Koji Sekiguchi wrote: (11/05/24 20:56), Lord Khan H

Re: Solr Highlight Component

2011-05-24 Thread Koji Sekiguchi
(11/05/24 20:56), Lord Khan Han wrote: Hi , Can I limit the terms that the HighlightComponent uses. My query is generally long and I want specific ones to be highlighted and the rest is not highlighted. Is there an option like the SpellCheckComponent. it uses q unless spellcheck.q if specified.