# Functions
NewRediStore returns a new RediStore.
NewRediStoreWithDB - like NewRedisStore but accepts `DB` parameter to select redis DB instead of using the default one ("0").
NewRediStoreWithPool instantiates a RediStore with a *redis.Pool passed in.
# Structs
GobSerializer uses gob package to encode the session map.
JSONSerializer encode the session map to JSON.
RediStore stores sessions in a redis backend.
# Interfaces
SessionSerializer provides an interface hook for alternative serializers.