# Functions
NewInMemoryStore returns a InMemoryStore.
NewMemcachedBinaryStore returns a MemcachedBinaryStore.
NewMemcachedBinaryStoreWithConfig returns a MemcachedBinaryStore using the provided configuration.
NewMemcachedStore returns a MemcachedStore.
NewRedisCache returns a RedisStore until redigo supports sharding/clustering, only one host will be in hostList.
NewRedisCacheWithPool returns a RedisStore using the provided pool until redigo supports sharding/clustering, only one host will be in hostList.
# Structs
InMemoryStore represents the cache with memory persistence.
MemcachedBinaryStore represents the cache with memcached persistence using the binary protocol.
MemcachedStore represents the cache with memcached persistence.
RedisStore represents the cache with redis persistence.
# Interfaces
CacheStore is the interface of a cache backend.