update readme for broken links (#432)

master
Kevin Wan 4 years ago committed by GitHub
parent 8b273a075c
commit 30f5ab0b99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -487,28 +487,28 @@ func (s *Redis) Hmset(key string, fieldsAndValues map[string]string) error {
}, acceptable) }, 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 { err = s.brk.DoWithAcceptable(func() error {
conn, err := getRedis(s) conn, err := getRedis(s)
if err != nil { if err != nil {
return err return err
} }
val, err = conn.HVals(key).Result() keys, cur, err = conn.HScan(key, cursor, match, count).Result()
return err return err
}, acceptable) }, acceptable)
return 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 { err = s.brk.DoWithAcceptable(func() error {
conn, err := getRedis(s) conn, err := getRedis(s)
if err != nil { if err != nil {
return err return err
} }
keys, cur, err = conn.HScan(key, cursor, match, count).Result() val, err = conn.HVals(key).Result()
return err return err
}, acceptable) }, acceptable)

@ -2,7 +2,7 @@
# go-zero # 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](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) [![Go Report Card](https://goreportcard.com/badge/github.com/tal-tech/go-zero)](https://goreportcard.com/report/github.com/tal-tech/go-zero)

@ -2,7 +2,7 @@
# go-zero # 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) [![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) [![codecov](https://codecov.io/gh/tal-tech/go-zero/branch/master/graph/badge.svg)](https://codecov.io/gh/tal-tech/go-zero)

Loading…
Cancel
Save