diff --git a/core/stores/redis/redis.go b/core/stores/redis/redis.go index fdc59e2e..69536128 100644 --- a/core/stores/redis/redis.go +++ b/core/stores/redis/redis.go @@ -487,28 +487,28 @@ func (s *Redis) Hmset(key string, fieldsAndValues map[string]string) error { }, acceptable) } -func (s *Redis) Hvals(key string) (val []string, err error) { +func (s *Redis) Hscan(key string, cursor uint64, match string, count int64) (keys []string, cur uint64, err error) { err = s.brk.DoWithAcceptable(func() error { conn, err := getRedis(s) if err != nil { return err } - val, err = conn.HVals(key).Result() + keys, cur, err = conn.HScan(key, cursor, match, count).Result() return err }, acceptable) return } -func (s *Redis) Hscan(key string, cursor uint64, match string, count int64) (keys []string, cur uint64, err error) { +func (s *Redis) Hvals(key string) (val []string, err error) { err = s.brk.DoWithAcceptable(func() error { conn, err := getRedis(s) if err != nil { return err } - keys, cur, err = conn.HScan(key, cursor, match, count).Result() + val, err = conn.HVals(key).Result() return err }, acceptable) diff --git a/readme-cn.md b/readme-cn.md index 5ca33fc7..d22c30f4 100644 --- a/readme-cn.md +++ b/readme-cn.md @@ -2,7 +2,7 @@ # go-zero -[English](readme-en.md) | 简体中文 +[English](readme.md) | 简体中文 [![Go](https://github.com/tal-tech/go-zero/workflows/Go/badge.svg?branch=master)](https://github.com/tal-tech/go-zero/actions) [![Go Report Card](https://goreportcard.com/badge/github.com/tal-tech/go-zero)](https://goreportcard.com/report/github.com/tal-tech/go-zero) diff --git a/readme.md b/readme.md index f7c13984..772f4759 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ # go-zero -English | [简体中文](readme.md) +English | [简体中文](readme-cn.md) [![Go](https://github.com/tal-tech/go-zero/workflows/Go/badge.svg?branch=master)](https://github.com/tal-tech/go-zero/actions) [![codecov](https://codecov.io/gh/tal-tech/go-zero/branch/master/graph/badge.svg)](https://codecov.io/gh/tal-tech/go-zero)