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 NewJSONParser.
>
> - you should almost certainly return a chan, not a pointer to chan.
>
>
> On Tue, 11 Jun 2019, 13:47 Tamer,  wrote:
>
>> 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 xml parser with similar
>> approach.
>>
>> https://github.com/tamerh/xml-stream-parser
>>
>> Please let know if you have suggestions/feedbacks.
>>
>> Cheers
>> Tamer
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "golang-nuts" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to golang-nuts+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/golang-nuts/22eef643-66bf-451e-ba84-1eb968682aea%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAPKCCvvE%2BF3oyv08WMU-c-i-aS93gqRL1siUkjkgxbEyh_pG4g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 Tamer,  wrote:

> 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 xml parser with similar
> approach.
>
> https://github.com/tamerh/xml-stream-parser
>
> Please let know if you have suggestions/feedbacks.
>
> Cheers
> Tamer
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/22eef643-66bf-451e-ba84-1eb968682aea%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAJhgachf%2By5r_6EyXJBickrn9GEEscmr8reo18%2BFQW2Zey_vxQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[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 xml parser with similar 
approach.

https://github.com/tamerh/xml-stream-parser

Please let know if you have suggestions/feedbacks.

Cheers
Tamer

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/22eef643-66bf-451e-ba84-1eb968682aea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.