mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
196 lines
6.2 KiB
Go
196 lines
6.2 KiB
Go
package goredis
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
// HDel command:
|
|
// Removes the specified fields from the hash stored at key.
|
|
// Specified fields that do not exist within this hash are ignored.
|
|
// If key does not exist, it is treated as an empty hash and this command returns 0.
|
|
func (r *Redis) HDel(key string, fields ...string) (int64, error) {
|
|
args := packArgs("HDEL", key, fields)
|
|
rp, err := r.ExecuteCommand(args...)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return rp.IntegerValue()
|
|
}
|
|
|
|
// HExists command:
|
|
// Returns if field is an existing field in the hash stored at key.
|
|
func (r *Redis) HExists(key, field string) (bool, error) {
|
|
rp, err := r.ExecuteCommand("HEXISTS", key, field)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return rp.BoolValue()
|
|
}
|
|
|
|
// HGet command:
|
|
// Returns the value associated with field in the hash stored at key.
|
|
// Bulk reply: the value associated with field,
|
|
// or nil when field is not present in the hash or key does not exist.
|
|
func (r *Redis) HGet(key, field string) ([]byte, error) {
|
|
rp, err := r.ExecuteCommand("HGET", key, field)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rp.BytesValue()
|
|
}
|
|
|
|
// HGetAll command:
|
|
// Returns all fields and values of the hash stored at key.
|
|
// In the returned value, every field name is followed by its value,
|
|
// so the length of the reply is twice the size of the hash.
|
|
func (r *Redis) HGetAll(key string) (map[string]string, error) {
|
|
rp, err := r.ExecuteCommand("HGETALL", key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rp.HashValue()
|
|
}
|
|
|
|
// HIncrBy command:
|
|
// Increments the number stored at field in the hash stored at key by increment.
|
|
// If key does not exist, a new key holding a hash is created.
|
|
// If field does not exist the value is set to 0 before the operation is performed.
|
|
// Integer reply: the value at field after the increment operation.
|
|
func (r *Redis) HIncrBy(key, field string, increment int) (int64, error) {
|
|
rp, err := r.ExecuteCommand("HINCRBY", key, field, increment)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return rp.IntegerValue()
|
|
}
|
|
|
|
// HIncrByFloat command:
|
|
// Increment the specified field of an hash stored at key,
|
|
// and representing a floating point number, by the specified increment.
|
|
// If the field does not exist, it is set to 0 before performing the operation.
|
|
// An error is returned if one of the following conditions occur:
|
|
// The field contains a value of the wrong type (not a string).
|
|
// The current field content or the specified increment are not parsable as a double precision floating point number.
|
|
// Bulk reply: the value of field after the increment.
|
|
func (r *Redis) HIncrByFloat(key, field string, increment float64) (float64, error) {
|
|
rp, err := r.ExecuteCommand("HINCRBYFLOAT", key, field, increment)
|
|
if err != nil {
|
|
return 0.0, err
|
|
}
|
|
s, err := rp.StringValue()
|
|
if err != nil {
|
|
return 0.0, err
|
|
}
|
|
return strconv.ParseFloat(s, 64)
|
|
}
|
|
|
|
// HKeys command:
|
|
// Returns all field names in the hash stored at key.
|
|
// Multi-bulk reply: list of fields in the hash, or an empty list when key does not exist.
|
|
func (r *Redis) HKeys(key string) ([]string, error) {
|
|
rp, err := r.ExecuteCommand("HKEYS", key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rp.ListValue()
|
|
}
|
|
|
|
// HLen command:
|
|
// Returns the number of fields contained in the hash stored at key.
|
|
// Integer reply: number of fields in the hash, or 0 when key does not exist.
|
|
func (r *Redis) HLen(key string) (int64, error) {
|
|
rp, err := r.ExecuteCommand("HLEN", key)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return rp.IntegerValue()
|
|
}
|
|
|
|
// HMGet command:
|
|
// Returns the values associated with the specified fields in the hash stored at key.
|
|
// For every field that does not exist in the hash, a nil value is returned.
|
|
// Because a non-existing keys are treated as empty hashes,
|
|
// running HMGET against a non-existing key will return a list of nil values.
|
|
// Multi-bulk reply: list of values associated with the given fields, in the same order as they are requested.
|
|
func (r *Redis) HMGet(key string, fields ...string) ([][]byte, error) {
|
|
args := packArgs("HMGET", key, fields)
|
|
rp, err := r.ExecuteCommand(args...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rp.BytesArrayValue()
|
|
}
|
|
|
|
// HMSet command:
|
|
// Sets the specified fields to their respective values in the hash stored at key.
|
|
// This command overwrites any existing fields in the hash.
|
|
// If key does not exist, a new key holding a hash is created.
|
|
func (r *Redis) HMSet(key string, pairs map[string]string) error {
|
|
args := packArgs("HMSET", key, pairs)
|
|
rp, err := r.ExecuteCommand(args...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return rp.OKValue()
|
|
}
|
|
|
|
// HSet command:
|
|
// Sets field in the hash stored at key to value.
|
|
// If key does not exist, a new key holding a hash is created.
|
|
// If field already exists in the hash, it is overwritten.
|
|
func (r *Redis) HSet(key, field, value string) (bool, error) {
|
|
rp, err := r.ExecuteCommand("HSET", key, field, value)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return rp.BoolValue()
|
|
}
|
|
|
|
// HSetnx command:
|
|
// Sets field in the hash stored at key to value, only if field does not yet exist.
|
|
// If key does not exist, a new key holding a hash is created.
|
|
// If field already exists, this operation has no effect.
|
|
func (r *Redis) HSetnx(key, field, value string) (bool, error) {
|
|
rp, err := r.ExecuteCommand("HSETNX", key, field, value)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return rp.BoolValue()
|
|
}
|
|
|
|
// HVals command:
|
|
// Returns all values in the hash stored at key.
|
|
// Multi-bulk reply: list of values in the hash, or an empty list when key does not exist.
|
|
func (r *Redis) HVals(key string) ([]string, error) {
|
|
rp, err := r.ExecuteCommand("HVALS", key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rp.ListValue()
|
|
}
|
|
|
|
// HScan command:
|
|
// HSCAN key cursor [MATCH pattern] [COUNT count]
|
|
func (r *Redis) HScan(key string, cursor uint64, pattern string, count int) (uint64, map[string]string, error) {
|
|
args := packArgs("HSCAN", key, cursor)
|
|
if pattern != "" {
|
|
args = append(args, "MATCH", pattern)
|
|
}
|
|
if count > 0 {
|
|
args = append(args, "COUNT", count)
|
|
}
|
|
rp, err := r.ExecuteCommand(args...)
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
first, err := rp.Multi[0].StringValue()
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
next, err := strconv.ParseUint(first, 10, 64)
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
hash, err := rp.Multi[1].HashValue()
|
|
return next, hash, err
|
|
}
|