Re: [go-nuts] Yet another new fast json/xml parser library

2019-06-14 Thread Tamer Gür
Thanks Roger. I applied your suggestions. On Wed, 12 Jun 2019 at 19:19, roger peppe wrote: > I haven't looked further than the godoc, but a couple of initial > suggestions: > > - the word JSON should always be spelled in all-caps if the first letter > is J, so you would be better with NewJSONPar

Re: [go-nuts] Yet another new fast json/xml parser library

2019-06-12 Thread roger peppe
I haven't looked further than the godoc, but a couple of initial suggestions: - the word JSON should always be spelled in all-caps if the first letter is J, so you would be better with NewJSONParser. - you should almost certainly return a chan, not a pointer to chan. On Tue, 11 Jun 2019, 13:47

[go-nuts] Yet another new fast json/xml parser library

2019-06-11 Thread Tamer
Hello everyone, I have developed a new json parser library. It is similar jstream library but it allows stream over selected json member instead of depth. It also allow skipping json members for less memory usage. https://github.com/tamerh/jsparser I have also refactored previously developed x