My first Solr query is:
http://localhost:8983/solr/test/select?q=id:idval
Using the result(only 1 result is returned) I get from this query, I take the "latlon" field value(let's call it latlonval from the result and pass it in to the following query:
http://localhost:8983/solr/test/select?q=*:*&fq={!geofilt pt=latlonval sfield=latlon d=50}
Using two queries is taking too much time to process. Is there anyway to combine these two queries into a single query? Probably using joins. If so, please show me how.