Mendoza: Use stack machines to compute efficient JSON diffs
1–10 of 35 posts
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#2Re: Mendoza: Use stack machines to compute efficient JSON diffs
#3Since this is an opaque serialization of an instruction set, why not try to encode more bits per number (JSON floats support lossless integers of many more bits), and moving the "symbol table" (string data) to the end?
This way you could also compress redundant symbols into single strings.
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#4Re: Mendoza: Use stack machines to compute efficient JSON diffs
#5On a tangential topic, how does one go about integrating Sanity Studio with Hugo so non-developers can create content more quickly?
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#6Interesting approach! But aren't JSON arrays a pretty wasteful encoding? Since this is an opaque serialization of an instruction set, why not try to encode more bits per number (JSON floats support lossless integers of many more bits), and moving the "symbol table" (string data) to the end? This way you could also compress redundant symbols into single strings.
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#7Interesting approach! But aren't JSON arrays a pretty wasteful encoding? Since this is an opaque serialization of an instruction set, why not try to encode more bits per number (JSON floats support lossless integers of many more bits), and moving the "symbol table" (string data) to the end? This way you could also compress redundant symbols into single strings.
The format itself is not strictly speaking coupled to JSON: https://github.com/sanity-io/mendoza/blob/master/docs/format.... If you can encode int8 and string more efficiently, then you can save some bytes with a custom binary encoding. However, you always need to be able to represent JSON as well. If a part of the JSON file isn't present in the old version, then you encode that part by the plain JSON.
> and moving the "symbol table" (string data) to the end? … you could also compress redundant symbols into single strings.
Sounds interesting, but in my experience these types of tricks are usually not paying off compared to just sending it through Gzip afterwards.
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#8Re: Mendoza: Use stack machines to compute efficient JSON diffs
#9I appreciate the Good Place reference in the name.
Re: Mendoza: Use stack machines to compute efficient JSON diffs
#10I appreciate the Good Place reference in the name.