Is there a way to add arbitrary values into the response header? I have a need to insert a boolean into the header and doing something like
SolrQueryResponse rsp = rb.rsp;
rsp.getResponseHeader().add("testValue", Boolean.TRUE);
Works so long as the query is not distributed. When the query is
distributed what the individual shards add to the header seem to be
thrown away. Is there a mechanism for the shard to influence the
header?
