Coming back to Question one This is how my standard handler looks like <requestHandler name="standard" class="solr.SearchHandler" default="true"> <!-- default values for query parameters --> <lst name="defaults"> <int name="rows">12</int> <str name="echoParams">explicit</str> <str name="fl">make,model</str> </lst> </requestHandler> i added fl parameter which return me those fields described, for this also i have to delete my browser cache and after that by defatul only those two fields are returned. but still the rows are ten when i issue a regular query like make:Honda from solr admin interface, by default it return rows 10 which i can see in the browser url http://localhost:8983/solr/select/?q=make%3AHonda&version=2.2&start=0&rows=10&indent=on but when i remove the rows in the browser url and hit again i get 12 rows this time.
I know this is not a big thing to discuss upon, but since i am preparing a seminar on this i want my audience to be absolutely clear about this. Thanks -- View this message in context: http://www.nabble.com/Common-Solr-Question-tp25068160p25083956.html Sent from the Solr - User mailing list archive at Nabble.com.