JSON Response for Facets not properly formatted
-----------------------------------------------

                 Key: SOLR-1616
                 URL: https://issues.apache.org/jira/browse/SOLR-1616
             Project: Solr
          Issue Type: Bug
    Affects Versions: 1.4
            Reporter: Lou Sacco


When making a SOLR search call with facets turned on, I notice that the facets 
JSON string is not properly formatted using wt=json. 

I would expect that there would be a bracketed array around each record rather 
than running them all together.  This is very hard to read with ExtJS as its 
JsonReader reads each element as its own record when the paired records are 
meant to be together.

Here's an example of the output I get:

{code}
"facet_counts":{
 "facet_queries":{},
 "facet_fields":{
    "deviceName":[
     "x2",6,
     "dd22",12,
     "f12",1],
    "devicePrgMgr":[
     "alberto",80,
     "anando",24,
     "artus",101],
    "portfolioName":[
     "zztop",32],
    "chipsetName":[
     "fat",3,
     "thin",2],
{code}

As an example, I would expect chipset family to be so that the JsonReader can 
read each as record:
{code}
    "chipsetName":[
        ["fat",3],
        ["thin",2]
     ],
{code}

See [here|http://json.org/fatfree.html] for details on Json Arrays. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to