djson icon indicating copy to clipboard operation
djson copied to clipboard

Fast Go decoder for dynamic JSON

Results 7 djson issues
Sort by recently updated
recently updated
newest added

Hello @a8m I'm planning to use this package to one of my new projects, but we don't see any docs relative to the this package, I tried to search source...

in-progress

Hello. I found a index out of range bug in djson. Please confirm. Thanks. reproduce code: ``` package djson import ( "testing" ) func TestFuzzCrashers(t *testing.T) { var crashers =...

Hello. I found a index out of range bug in djson. Please confirm. Thanks. reproduce code: ``` package djson import ( "testing" ) func TestFuzzCrashers(t *testing.T) { var crashers =...

Hello. I found a index out of range bug in djson. Please confirm. Thanks. reproduce code: ``` package djson import ( "testing" ) func TestFuzzCrashers(t *testing.T) { var crashers =...

It'd be nice to compare djson with https://github.com/buger/jsonparser

You may want to include `map[string]*json.RawMessage` in your benchmarks. That is on par with djson for the medium sample and faster for the large sample. json.RawMessage is the recommended solution...