You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key type (:) in value was disappeared. In jepsen, there are amount of key type used in structure value, this problem will affect a lot of ser/de case.
A key point is that we need to keep the : in json format string, otherwise the deserializer will not know which type should a string be deser to, key type or string.
The text was updated successfully, but these errors were encountered:
I tried to use
clojure.data.json
to ser/de the history and other structures. And I did a test:The result is:
The key type (
:
) in value was disappeared. In jepsen, there are amount of key type used in structure value, this problem will affect a lot of ser/de case.A key point is that we need to keep the
:
in json format string, otherwise the deserializer will not know which type should a string be deser to, key type or string.The text was updated successfully, but these errors were encountered: