Hi,
I've just moved from using default handler on /select to a particular
requestHandler defined on solrconfig.xml (the main goal is to add default
parameters, thus simplifying requests).
My search handler looks like this:
<requestHandler name="/tstfeed" class="solr.SearchHandler">
<lst name="defaults">
<str
name="fl">title,author,link,description,timestamp,url,image,source</str>
<int name="rows">10</int>
<int name="start">0</int>
<str name="sort">timestamp desc</str>
</lst>
</requestHandler>
I've noticed that new responses lack the query info on the response.
...
<lst name="params">
<str name="q">category:tech</str>
</lst>
...
Any parameter needed to have that info shown on the response of my handler?
Thanks!
--
View this message in context:
http://lucene.472066.n3.nabble.com/params-field-on-response-tp3418259p3418259.html
Sent from the Solr - User mailing list archive at Nabble.com.