# Functions
NewRedisClient gets the redis configuration from the service config and returns a new client or an error if something went wrong.
NewRedisMap creates a new redis map.
# Structs
RedisClientImpl is the implementation of the redis client using an actual connection to redis using go-redis.
RedisMap is an ObjectMap that stores objects in Redis using hash functions.
# Interfaces
ObjectMap is an interface for getting objects from an arbitrary data store.
RedisClient defines an interface to interact with Redis.
# Type aliases
Deserializer turns a string into an object.
Serializer turns an object into a string.