I have a need to pass back more information from Solr to my client. Specifically, I am trying to use Solr's "Result Grouping" feature. I gather that in order to use "Custom Payload" I need to implement my own custom query handler. See https://docs.datastax.com/en/developer/java-driver-dse/1.7/manual/custom_payloads/
I'd like to do that by extending DSE's DseQueryHandler so that I don't mess with existing functionality. It would really be helpful to see the DseQueryHandler code. I'll want to do something similar to how it passes back "DSESearch.numFound". Is there a place I can see that code? Are their examples of anyone doing this?