I am little confused about your question.
Incase you are looking to access the json object returned by solr, decode
the json object using a programming language of you choice. The document set
can be accessed using $json['response']['docs'](in PHP). This is an array of
hashes(associative arrays).
Thanks for reply, But i want to know how Json does it internally, I mean how
it display results as Field:value.
-
Thanks & Regards
Romi
--
View this message in context:
http://lucene.472066.n3.nabble.com/How-to-display-solr-search-results-in-Json-format-tp3004734p3004768.html
Sent from the So
Hi Romi,
When querying the Solr index, use 'wt=json' as part of your query string to
get the results back in json format.
On Tue, May 31, 2011 at 11:35 AM, Romi wrote:
> I have indexed all my database data in solr, now I want to rum search on it
> and display results in JSON. what i need to do