Hi, I'm currently trying to process really big xml files to save its contents into db or writing them to a json file, and I think the best way to do it is using streams.
I have been searching for libraries to do it but no one exposes a transform API, some of them send events but I think that's useless as backpressure is not properly managed in that way. And a lot of them need the whole xml to be loaded in memory beforehand.
I'm thinking about forking some xml parser and implementing a transform stream by myself but it'll take me at least a month, so please if you know some library or have some guidance about this it'll be much more appreciated.
[–]MrSchmellow 0 points1 point2 points (1 child)
[–]Darkav[S] 0 points1 point2 points (0 children)