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
Currently JSON serialisation and deserialisation in the PostgresStorageAdapter is via the built-in json.dumps and json.loads functions. These assume snake case keys for serialised JSON objects which may or may not meet the expectations of the user.
If a JSON codec could be supplied to the adapter at construction time, it would give the user more control over what ends up in their database.
The text was updated successfully, but these errors were encountered:
Currently JSON serialisation and deserialisation in the
PostgresStorageAdapter
is via the built-injson.dumps
andjson.loads
functions. These assume snake case keys for serialised JSON objects which may or may not meet the expectations of the user.If a JSON codec could be supplied to the adapter at construction time, it would give the user more control over what ends up in their database.
The text was updated successfully, but these errors were encountered: