Documentation ¶
Index ¶
- func NewSsdbCache() cache.Cache
- type Cache
- func (rc *Cache) ClearAll(context.Context) error
- func (rc *Cache) Decr(ctx context.Context, key string) error
- func (rc *Cache) DelMulti(keys []string) error
- func (rc *Cache) Delete(ctx context.Context, key string) error
- func (rc *Cache) Get(ctx context.Context, key string) (interface{}, error)
- func (rc *Cache) GetMulti(ctx context.Context, keys []string) ([]interface{}, error)
- func (rc *Cache) Incr(ctx context.Context, key string) error
- func (rc *Cache) IsExist(ctx context.Context, key string) (bool, error)
- func (rc *Cache) Put(ctx context.Context, key string, val interface{}, timeout time.Duration) error
- func (rc *Cache) Scan(keyStart string, keyEnd string, limit int) ([]string, error)
- func (rc *Cache) StartAndGC(config string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache SSDB adapter
func (*Cache) ClearAll ¶
ClearAll clears all cached items in ssdb. If there are many keys, this method may spent much time.
func (*Cache) StartAndGC ¶
StartAndGC starts the memcache adapter. config: must be in the format {"conn":"connection info"}. If an error occurs during connection, an error is returned
Click to show internal directories.
Click to hide internal directories.