When I decided to make Jpath, no. It wasn't until afterwards when i found that library. However, they are still pretty different and each offer different...
Hello, I have a slight problem, an adequate explanation of which I have not been able to find. I'm hoping you can shed some light on the matter... I'm trying...
Hi JSON group, I'm brand new here and was invited here by Douglas Crockford (thanks, I'm honored!) based on my work with a jsonDiff implementation, so I guess...
... I was not aware, I'll have a look at it. But not for the current project which is done in C# / .net. ... Great - let me know if you like it. /Michael...
Have you run any benchmark between both libraries for some of the common features? ... -- Blog: http://justavo.blogsome.com/ [Non-text portions of this message...
I'm not sure if this benchmark is useful or not but i threw together a set of three tests which just iterates over equivalent queries 1000 times. Since there's...
I'm looking for a script/example/library written in VBA to parse JSON data. I didn't see one on json.org, and have had little luck with Google searches....
a bit out of scope, but carefully written javascript libraries can all be used this way. And there should be a lot that support json via eg. regexps (if plain...
In the past I tried this within VB6 apps and using the script object seemed to cause Norton Anti-virus throw scripting alerts and halt execution until the user...
Thanks to all who replied, we'll be experimenting with the suggestions. ... That would be a problem, in the long run, we're looking to ship this to customers. ...
I have written a lot of applications that make heavy use of JSON data. In fact, I often store large amounts of JSON data in configuration files instead of...
... That was my first thought when thinking about how to do it, as well. That would make sense if you wanted to always keep and use the JSON sorted. In one of...
Hi all, I'd like to introduce json2list and SpringDB to you all. json2list is a transformation tool from JSON to HTML list (ol and ul) and hosted at...
... I understand this, and it's a valid point. But I was thinking more along the lines of deferring initialization of the Map, and switching between the two...
... Actually, it isn't. Even though the javadoc claims that get and put are constant time, a moment's reflection shows that this cannot be so. HashMap is...
... when ... Map.Entry. ... O(N). ... Not true. Full rehashes are indeed O(N), but they take place at a frequency proportional to 1/c because each time a...
Is storing a JSON string in a database: A: a crap idea. period. B: a crap idea under most common circumstances C: pure genius Thanks. You've been helpful. ...
The major problem with storing raw JSON strings in a database is that you lose any structural meaning of the JSON data, you can't do relevant queries that...
... Hi Mark, In a major project I'm currently involved in we had to consider how to store client side data and process it server side. JSON was one of the...
... Fundamentally there are 2 very distinct major classes of use cases: those where data is mostly or completely access as a single entity (one row, xml/json...
Hi All I am developing on an embedded platform with C++, and wish to encode my AJAX get and post responses in JSON. Looking at the specification, it doesn't...