I have setup my highlight as follows:

     <bool name="hl">true</bool>
     <str name="hl.fl">name age address</str>

However I don't want *name* be highlighted *but *included inside response:

"highlighting": {
 Something_myid: {
    name: "<em>Something</em> bla bla",
    age: "<em>Something</em> age bla bla",
    address: "<em>Something</em> age bla bla"
  }
}

*or:*

I want to group them on name field instead of id:

"highlighting": {
 Something bla bla: {
    age: "<em>Something</em> age bla bla",
    address: "<em>Something</em> age bla bla"
  }
}

*or*

"highlighting": {
 Something bla bla: {
    name: "<em>Something</em> bla bla",
    age: "<em>Something</em> age bla bla",
    address: "<em>Something</em> age bla bla"
  }
}

How can I do *any* of them at Solr 4.5.1?

Reply via email to