Awesome!
Awesome!
Posted May 15, 2012 13:17 UTC (Tue) by jberkus (guest, #55561)In reply to: Awesome! by ringerc
Parent article: Highlights from the PostgreSQL 9.2 beta
We discussed having a binary JSON type as well, but without a protocol to transmit binary values (BSON isn't at all a standard, and has some serious glitches), there didn't seem to be any point.
If you're interested in working on binary JSON support for PostgreSQL, we'd be interested in having you help out ...
Posted May 15, 2012 13:54 UTC (Tue)
by Cyberax (✭ supporter ✭, #52523)
[Link] (4 responses)
I was thinking about binary serializing JSON (I definitely don't like BSON). Simply tagging strings with length and not bothering about escaping helps greatly and simplifies parsing greatly. It also can be easily plugged into existing parsers. Type-specific tagging (int4, int8, bigint, float, string, map) would also be welcomed, but there are some fine points with it.
Posted May 15, 2012 14:42 UTC (Tue)
by nteon (subscriber, #53899)
[Link]
Posted May 15, 2012 15:03 UTC (Tue)
by jberkus (guest, #55561)
[Link] (2 responses)
What's the license of the parser?
Posted May 16, 2012 12:23 UTC (Wed)
by Cyberax (✭ supporter ✭, #52523)
[Link] (1 responses)
Posted May 22, 2012 5:34 UTC (Tue)
by ringerc (subscriber, #3071)
[Link]
Of course, not all those need fancy fast asm/intrinsics based speedy parsers. A portable, safe implementation in plain old C does the job fine for most platforms; Pg's build system is designed to selectively build files depending on target platform so optimised versions can be used where available and a general fallback implementation where not.
A big concern to me with using a new JSON optimised/complex implementation would be the need to maintain it, ensuring it was secure, reliable, and stable. Especially in "fast" code it's hard to ensure that everything is checked and safe. Pg users expect bad input to cause a polite error message not a backend crash, so any kind of horrible corrupt JSON you can imagine must be coped with cleanly.
Of course, Pg already has a roll-your-own JSON implementation, so it'd be cool to have something faster so long as it still focused on safety first.
Awesome!
Awesome!
Awesome!
Awesome!
Awesome!