I am using pysolr-2.0.15 api for Solr searching
mysite:8983/solr/select/?q=disease&fq=url:"pediatric"&version=2.2&start=0&rows=10&indent=on
This Solr query gives me successful result
I want to implement this using pysolr search function
I am trying this one:
results = conn.search('disease "url:Pediatric"')
But results are not correct.
Another problem is that the search method returns only 10 records; how can I get all search results.