Hello,Realizing that this may be a more verbose way of writing code, what is currently known to be some of the fastest (both in ms and memory usage) methods of parsing xml in go?
Currently I am doing this in java using xerces (sax) where I have to handle events which makes for less readable code in general but it is suppose be much faster than loading the entire DOM in memory.
Looking to learn and hopefully see some sample code on how to do this in Go.
Thanks!
--
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...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I have a service that is written in java that I am thinking of re-writing in Go, or at least investigating it b/c I like the quick compiles of Go and I think this would be a great project for me to get my hands dirty with Go.I could do the xml -> object -> binary serialized -> db method as you describe, but first I need to parse the xml to get it into an object.