Versions in this module Expand all Collapse all v1 v1.6.1 Jan 22, 2017 Changes in this version + type Cache struct + AzureClient storage.BlobStorageClient + AzureContainerName string + S3BucketName string + S3Client *s3.S3 + func NewCache(s3Bucket, azureContainer string) (*Cache, error) + func (c *Cache) AzureGet(key string) ([]byte, error) + func (c *Cache) AzureSet(key string, value []byte) error + func (c *Cache) Delete(key string) error + func (c *Cache) FSGet(key string) ([]byte, error) + func (c *Cache) FSSet(key string, value []byte) error + func (c *Cache) Get(key string) ([]byte, error) + func (c *Cache) S3Get(key string) ([]byte, error) + func (c *Cache) S3Set(key string, value []byte) error + func (c *Cache) Set(key string, value []byte) error