Closed
Description
Bug's data are stored using git Commit
, Tree
and Blob
. Inside a Blob
is serialized an OperationPack
, that is an array of edit operation on the bug's state.
This OperationPack
is currently serialized using golang's gob, which is neat because it just works. However, it might not be the best option for interoperability with other tools in the future.
How should that be serialized ? Json ? In any case, git will compress the data using zlib so a text format might not be that terrible.
Feel free to argue a case here.