Re: How to Configure Highlighting for Solr

2013-11-20 Thread Furkan KAMACI
I have implemented a search API that interacts with Solr. I don't retrieve id field. Id field is a transformed version of name field and it helps to make a quicker search on index. It would be nice to declare to Solr that I have another field that is unique too and it would be nice to group highlig

Re: How to Configure Highlighting for Solr

2013-11-20 Thread Stefan Matheis
Solr is using the UniqueKey you defined for your documents, that shouldn't be a problem, since you can lookup the document from the list of documents in the main response? And there is actually a ticket, which would allow it to inline the highlight response with DocTransfomers: https://issues.a

How to Configure Highlighting for Solr

2013-11-20 Thread Furkan KAMACI
I have setup my highlight as follows: true name age address However I don't want *name* be highlighted *but *included inside response: "highlighting": { Something_myid: { name: "Something bla bla", age: "Something age bla bla", address: "Something age bla bla" } } *or:*