I’ve got a dictionary containing only String
keys mapping to Number
s. This is the result of a computation that runs on a server. Since I make use of PyJulia to initiate the computation from a Python app, I’m using a custom system image (like mentioned here).
This comes with the problem, that I cannot properly read (using Serialization.deserialize(...)
) the result using my local Julia after downloading the binary file. (Documented here: Serialization · The Julia Language)
Is there any other way to efficiently serialize something like that into a file that can be shared across Julia installations? I know I could just write that Dict
to a file myself, but I was kind of expecting there to be something semi-stable for “easy” data types.