Re: Ordering in Nested Document

2020-02-27 Thread Gajendra Dadheech
nd childfrees in one index wasn't supported. > > On Mon, Feb 24, 2020 at 2:57 AM Gajendra Dadheech > wrote: > > > That extra s was intentional, should have added a better name. > > > > So ideally we shouldn't have childfree and blocks together while > indexin

Re: Ordering in Nested Document

2020-02-24 Thread Gajendra Dadheech
ep childfrees in the index. > > On Mon, Feb 24, 2020 at 2:22 AM Gajendra Dadheech > wrote: > > > Hi > > > > i want to ingest below documents, where there is a mix of nested and > > un-nested documents: > > > > > > 5 > >

Ordering in Nested Document

2020-02-24 Thread Gajendra Dadheech
Hi i want to ingest below documents, where there is a mix of nested and un-nested documents: 5 5 5Solr adds block join support sparentDocument 1 1 Solr adds block join support parentDocument 2 1 SolrCloud

Re: Help with complex boolean search queries

2017-11-20 Thread Gajendra Dadheech
Hey Ankit, Try this tool for a better view of your debug output, and then if you have any specific question, do let me know : http://splainer.io/ On Sun, Oct 29, 2017 at 2:34 AM, Ankit Shah wrote: > Hi, > I am new to the solr community, and have this weird problem with the search > results > h

Re: SetBoost for dismax query

2015-09-26 Thread Gajendra Dadheech
remove boost from its child to retain sanctity. I hope i made it clear. Thanks and regards, Gajendra Dadheech On Sat, Sep 26, 2015 at 9:02 PM, Doug Turnbull < dturnb...@opensourceconnections.com> wrote: > Hi Gajendra > > What do you mean by "behaving odd"? What odd be

SetBoost for dismax query

2015-09-26 Thread Gajendra Dadheech
impact its dijuncts [which could be dismax or boolean] Thanks and regards, Gajendra Dadheech

Re: Indexed field to schema field

2015-07-08 Thread Gajendra Dadheech
Sorry,thought this was common problem. Will present with decoration in some time if not able to solve it by then. Thanks and regards, Gajendra Dadheech On Wed, Jul 8, 2015 at 6:23 PM, Alessandro Benedetti < benedetti.ale...@gmail.com> wrote: > I am really sorry Gajendra, but wha

Re: Indexed field to schema field

2015-07-08 Thread Gajendra Dadheech
At the time of forming this request i am not sure which kind of field that would be. So i read fields in new searcher. Thanks and regards, Gajendra Dadheech On Wed, Jul 8, 2015 at 2:12 PM, Gajendra Dadheech wrote: > I wish to do it in code so schema browser is lesser of an option. >

Re: Indexed field to schema field

2015-07-08 Thread Gajendra Dadheech
I wish to do it in code so schema browser is lesser of an option. Use case is : I wish to boost particular fields while matching, for that i need to know My field to Solr field mapping. SO that i can put that in the query. Thanks and regards, Gajendra Dadheech On Tue, Jul 7, 2015 at 9:23 PM

Indexed field to schema field

2015-07-07 Thread Gajendra Dadheech
have to remove those suffixes, this becomes little tricky when fields are dynamic. Thanks and regards, Gajendra Dadheech

Re: Union and intersection methods in solr DocSet

2015-05-06 Thread Gajendra Dadheech
gards, Gajendra Dadheech On Thu, May 7, 2015 at 6:06 AM, Chris Hostetter wrote: > > : DocSet docset1 = Searcher.getDocSet(query1) > : DocSet docset2 = Searcher.getDocSet(query2); > : > : Docset finalDocset = docset1.intersection(docset2); > : > : Is this a valid approach ? Giv

Union and intersection methods in solr DocSet

2015-05-04 Thread Gajendra Dadheech
a valid approach ? Give docset could either be a sortedintdocset or a bitdocset. I am facing ArrayIndexOutOfBoundException when union/intersected between different kind of docsets. Thanks and regards, Gajendra Dadheech