Javascript Object Notation
1
vote
1answer
174 views
ChunkDB to handle high traffic JSON web service? Alternatives?
I am designing a high volume web service which will rely on a central database containing objects of a single JSON type. Currently I am considering using ChunkDB to store the objects and retrieve the ...
12
votes
6answers
445 views
Is saying “JSON Object” redundant?
If JSON stands for JavaScript Object Notation, then when you say JSON object, aren't you really saying "JavaScript Object Notation Object"?
Would saying "JSON string" be more correct?
Or would it be ...
1
vote
1answer
268 views
Django - Using a JSON string as an attribute map to avoid subclassing
I have a Django model called Entity. Different types of Entity have different attributes (e.g. some have a currency associated with them, others don't). I'd rather not have to create a new subclass ...