As far as I understand the JSON store only supports this format of a JSON file:

{
  "bytes" : [
    {
       "name" : "small",
       "size" : "10"
    },
    {
       "name" : "big",

       "size" : "20"

    }
  ]
}

It means that the column information is repeated for every item (row). That 
takes space. Not all browsers support gzip. Therefore is the following solution 
interesting:

{
  "columns" : [
    "name",
    "size"
  ],
  "rows" : [
     {"small", "10"},
     {"big", "20"}

  ]
}

It gives a much more compact structure!!!

What do you say guys? Is it difficult to implement?

Stefan
                                          
------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to