Hello Daniyal,
> I want to move ahead with using the pickle module. However, does it
seem necessary to add support for other serializers ( json / yaml / msgpack
) as well?
I don't think that adding support for configurable serialization is
necessary for this project. Don't get me wrong, I thin
Hi
Since redis does not support complex objects, we need to serialize the data
into a suitable format. Most third-party libraries use either the pickle
module, to serialize the values or use json / yaml serializers. I want to
move ahead with using the pickle module. However, does it seem necessary