With dismax use bf=domain_ct. you can also use boost=domain_ct with edismax.
> On Jun 23, 2017, at 23:01, govind nitk <govind.n...@gmail.com> wrote: > > 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://localhost:8983/solr/my_index/select?defType=dismax&indent=on&q=fruits&qf=category > ^0.9&qf=name^0.7&wt=json > > > Is it possible to retrieve the documents with weight taken from the indexed > field like: > > http://localhost:8983/solr/my_index/select?defType=dismax&indent=on&q=fruits&qf=category > ^domain_ct&qf=name^domain_ct&wt=json > > Is this possible to give weight from an indexed field ? Am I doing > something wrong? > Is there any other way of doing this? > > > Regards