You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/github.com/gogf/gf/v2/database/gredis/gredis_redis_group_hash.go

33 lines
1.4 KiB

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gredis
import (
"context"
"github.com/gogf/gf/v2/container/gvar"
)
// IGroupHash manages redis hash operations.
// Implements see redis.GroupHash.
type IGroupHash interface {
HSet(ctx context.Context, key string, fields map[string]interface{}) (int64, error)
HSetNX(ctx context.Context, key, field string, value interface{}) (int64, error)
HGet(ctx context.Context, key, field string) (*gvar.Var, error)
HStrLen(ctx context.Context, key, field string) (int64, error)
HExists(ctx context.Context, key, field string) (int64, error)
HDel(ctx context.Context, key string, fields ...string) (int64, error)
HLen(ctx context.Context, key string) (int64, error)
HIncrBy(ctx context.Context, key, field string, increment int64) (int64, error)
HIncrByFloat(ctx context.Context, key, field string, increment float64) (float64, error)
HMSet(ctx context.Context, key string, fields map[string]interface{}) error
HMGet(ctx context.Context, key string, fields ...string) (gvar.Vars, error)
HKeys(ctx context.Context, key string) ([]string, error)
HVals(ctx context.Context, key string) (gvar.Vars, error)
HGetAll(ctx context.Context, key string) (*gvar.Var, error)
}