In the current version, redis_client deserializes empty values to null.
Since redis doesn't support null values by itself that's all empty Strings are thus converted to null.
I propose to change this behaviour so null and "" (empty String) both deserialize to "" (empty String). I think it prevents errors, and theoretically redis always stores an empty String, not a null value.
@dartist/owners what do you say?
In the current version, redis_client deserializes empty values to
null.Since redis doesn't support null values by itself that's all empty Strings are thus converted to
null.I propose to change this behaviour so
nulland""(empty String) both deserialize to""(empty String). I think it prevents errors, and theoretically redis always stores an empty String, not anullvalue.@dartist/owners what do you say?