You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to find an existing issue but couldn't, sorry if I missed one.
I have a very large XML file (~284MB) that requires a lot of memory to parse. There are tags in this file that I do not care about at all, and to reduce memory usage, I want to ignore or "skip" them entirely. I do not want the contents or any children of these tags in my output.
stopNodes does not meet my needs as it still includes the tags' contents in the output. But otherwise, the JPath syntax would meet my needs.