MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / HVALS

Method HVALS

hashes.go:271–280  ·  view source on GitHub ↗
(key string)

Source from the content-addressed store, hash-verified

269}
270
271func (c Client) HVALS(key string) (values []ReturnValue, err error) {
272 all, err := c.HGETALL(key)
273 if err == nil {
274 for _, v := range all {
275 values = append(values, v)
276 }
277 }
278
279 return
280}
281
282func (c Client) HLEN(key string) (count int64, err error) {
283 hasMoreResults := true

Callers 1

TestBasicHashesFunction · 0.80

Calls 1

HGETALLMethod · 0.95

Tested by 1

TestBasicHashesFunction · 0.64