←back to thread

JSON Patch

(zuplo.com)
300 points DataOverload | 1 comments | | HN request time: 0.208s | source
Show context
terrelln ◴[] No.41882101[source]
You can also use general purpose compressors like Zstandard to create a generic patch:

    zstd --patch-from old.json new.json -o patch.zst
    zstd --patch-from old.json -d patch.zst -o updated.json
replies(2): >>41882336 #>>41955970 #
1. yencabulator ◴[] No.41955970[source]
And last I tested, this was more performant and space efficient than JSON Patch...