We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type AdapterCache interface { String() string Get(key string) (string, error) Set(key string, val interface{}, expire int) error Del(key string) error HashGet(hk, key string) (string, error) HashDel(hk, key string) error Increase(key string) error Decrease(key string) error Expire(key string, dur time.Duration) error }
实现了 HashGet(hk, key string) (string, error) 方法,但是 hset 这类方法都没有实现? 请问这么设计的原因是什么呢?redis原生的client也拿不到...
The text was updated successfully, but these errors were encountered:
发现可以这么写?
config.GetRedisClient().HSet
Sorry, something went wrong.
No branches or pull requests
实现了 HashGet(hk, key string) (string, error) 方法,但是 hset 这类方法都没有实现?
请问这么设计的原因是什么呢?redis原生的client也拿不到...
The text was updated successfully, but these errors were encountered: