mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
22 lines
681 B
Go
22 lines
681 B
Go
// Copyright 2019 gf Author(https://github.com/gogf/gf). 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 "github.com/gogf/gf/container/gvar"
|
|
|
|
// DoVar returns value from Do as gvar.Var.
|
|
func (c *Conn) DoVar(command string, args ...interface{}) (*gvar.Var, error) {
|
|
v, err := c.Do(command, args...)
|
|
return gvar.New(v), err
|
|
}
|
|
|
|
// ReceiveVar receives a single reply as gvar.Var from the Redis server.
|
|
func (c *Conn) ReceiveVar() (*gvar.Var, error) {
|
|
v, err := c.Receive()
|
|
return gvar.New(v), err
|
|
}
|