Currently, Storage instances just forward on their database's responses to write and delete operations. Since different DBs respond differently (e.g., a successful write on Redis returns "OK", while Postgres returns one or more ids if it did an insert or the number of updated rows for update). These responses need to be standardized for the API.
Currently, Storage instances just forward on their database's responses to write and delete operations. Since different DBs respond differently (e.g., a successful
writeon Redis returns"OK", while Postgres returns one or more ids if it did aninsertor the number of updated rows forupdate). These responses need to be standardized for the API.