I'm trying to process a JSON datastructure with ~hundred Gigs of data (larger than RAM).
Stringify produces an in-memory representation of the entire JSON before returning the wstring, leading to a bunch of memory waste. If possible, would you consider changing it to support direct output to an ostream?
(Then Stringify is just concat to a stringstream)