mirror of https://github.com/go-redis/redis.git
Use unsafe StringToBytes to speedup StringCmd.Bytes
This commit is contained in:
parent
ec312e4dd5
commit
f76700581d
|
@ -9,6 +9,7 @@ import (
|
|||
|
||||
"github.com/go-redis/redis/internal"
|
||||
"github.com/go-redis/redis/internal/proto"
|
||||
"github.com/go-redis/redis/internal/util"
|
||||
)
|
||||
|
||||
type Cmder interface {
|
||||
|
@ -617,7 +618,7 @@ func (cmd *StringCmd) Result() (string, error) {
|
|||
}
|
||||
|
||||
func (cmd *StringCmd) Bytes() ([]byte, error) {
|
||||
return []byte(cmd.val), cmd.err
|
||||
return util.StringToBytes(cmd.val), cmd.err
|
||||
}
|
||||
|
||||
func (cmd *StringCmd) Int() (int, error) {
|
||||
|
|
Loading…
Reference in New Issue