Expand description
Redis model implementation.
Currently we do not use Redis because it uses &mut self
that is not compatible with model
trait interface. Redis connection does not implement Clone
so we cannot use
Arc<Mutex<Connection>>
to implement.