Documentation
      ¶
    
    
  
    
  
    Index ¶
- func DeleteContext(ctx context.Context, cache Cache, key string) error
 - func GetContext(ctx context.Context, cache Cache, key string) interface{}
 - func IsExistContext(ctx context.Context, cache Cache, key string) bool
 - func SetContext(ctx context.Context, cache Cache, key string, val interface{}, ...) error
 - type Cache
 - type ContextCache
 - type Memcache
 - type Memory
 - type Redis
 - func (r *Redis) Delete(key string) error
 - func (r *Redis) DeleteContext(ctx context.Context, key string) error
 - func (r *Redis) Get(key string) interface{}
 - func (r *Redis) GetContext(ctx context.Context, key string) interface{}
 - func (r *Redis) IsExist(key string) bool
 - func (r *Redis) IsExistContext(ctx context.Context, key string) bool
 - func (r *Redis) Set(key string, val interface{}, timeout time.Duration) error
 - func (r *Redis) SetConn(conn redis.UniversalClient)
 - func (r *Redis) SetContext(ctx context.Context, key string, val interface{}, timeout time.Duration) error
 - func (r *Redis) SetRedisCtx(ctx context.Context)
 
- type RedisByRedigo
 - type RedisByRedigoOpts
 - type RedisOpts
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeleteContext ¶
DeleteContext delete value in cache.
func GetContext ¶
GetContext get value from cache
func IsExistContext ¶
IsExistContext check value exists in cache.
Types ¶
type Cache ¶
type Cache interface {
	Get(key string) interface{}
	Set(key string, val interface{}, timeout time.Duration) error
	IsExist(key string) bool
	Delete(key string) error
}
    Cache interface
type ContextCache ¶
type ContextCache interface {
	Cache
	GetContext(ctx context.Context, key string) interface{}
	SetContext(ctx context.Context, key string, val interface{}, timeout time.Duration) error
	IsExistContext(ctx context.Context, key string) bool
	DeleteContext(ctx context.Context, key string) error
}
    ContextCache interface
type Memcache ¶
type Memcache struct {
	// contains filtered or unexported fields
}
    Memcache struct contains *memcache.Client
type Memory ¶
Memory struct contains *memcache.Client
type Redis ¶
type Redis struct {
	// contains filtered or unexported fields
}
    Redis .redis cache
func (*Redis) DeleteContext ¶
DeleteContext 删除
func (*Redis) GetContext ¶
GetContext 获取一个值
func (*Redis) IsExistContext ¶
IsExistContext 判断key是否存在
func (*Redis) SetContext ¶
func (r *Redis) SetContext(ctx context.Context, key string, val interface{}, timeout time.Duration) error
SetContext 设置一个值
func (*Redis) SetRedisCtx ¶
SetRedisCtx 设置redis ctx 参数
type RedisByRedigo ¶
type RedisByRedigo struct {
	// contains filtered or unexported fields
}
    RedisByRedigo 兼容 redigo/redis 的redis实例
func NewRedisByRedigo ¶
func NewRedisByRedigo(opts *RedisByRedigoOpts, redisPool *redis.Pool) *RedisByRedigo
NewRedisByRedigo 实例化
type RedisByRedigoOpts ¶
type RedisByRedigoOpts struct {
	Host        string `yml:"host" json:"host"`
	Port        string `yml:"port" json:"port"`
	Password    string `yml:"password" json:"password"`
	Database    int    `yml:"database" json:"database"`
	MaxIdle     int    `yml:"max_idle" json:"max_idle"`
	MaxActive   int    `yml:"max_active" json:"max_active"`
	IdleTimeout int    `yml:"idle_timeout" json:"idle_timeout"` // second
	Wait        bool   `yml:"wait" json:"wait"`
}
    RedisByRedigoOpts redis 连接属性
type RedisOpts ¶
type RedisOpts struct {
	Host        string `yml:"host" json:"host"`
	Password    string `yml:"password" json:"password"`
	Database    int    `yml:"database" json:"database"`
	MaxIdle     int    `yml:"max_idle" json:"max_idle"`
	MaxActive   int    `yml:"max_active" json:"max_active"`
	IdleTimeout int    `yml:"idle_timeout" json:"idle_timeout"` // second
}
    RedisOpts redis 连接属性
 Click to show internal directories. 
   Click to hide internal directories.