jsonparser
jsonparser copied to clipboard
One of the fastest alternative JSON parser for Go that does not require schema
I'm dealing with a large, flat json payload that has 100+ keys in a map. I hit panics when using EachKey with the full list of json keys: ``` goroutine...
We need to make sure that it parse any json. Does anyone knows good source of json specs?
EachKey gets an array of strings as a parameter, but it would be quite better for me to iterate over map data structure. Could you please make a function with...
**Description**: What this PR does Ge the raw json value by key(s) **Benchmark before change**: ``` go test -test.benchmem -bench JsonParser -benchtime 5s -v goos: darwin goarch: amd64 pkg: benchmarks...
This fixes a vulnerability in this library that is showing up in vulnerability scans on dependencies in other projects I work on. The fix is simple, update the go builder...
**Description**: What this PR does **Benchmark before change**: **Benchmark after change**: For running benchmarks use: ``` go test -test.benchmem -bench JsonParser ./benchmark/ -benchtime 5s -v # OR make bench (runs...
## What is the problem If I try to call `Set` on an array jsonparser always replaces the first element of the array, regardless of the index passed ## How...
I saw func "eachKey". Do you have func for get key by index?
**Description**: Fixes https://github.com/buger/jsonparser/issues/253 **Benchmark before change**: **Benchmark after change**: For running benchmarks use: ``` go test -test.benchmem -bench JsonParser ./benchmark/ -benchtime 5s -v # OR make bench (runs inside docker)...
Hello, we are a research team working on Golang. During our investigation, we found CVE-2020-10675 was addressed in commit 91ac96899e492584984ded0c8f9a08f10b473717. However, we noticed that the patch version was released after...