1
0
mirror of https://github.com/redis/go-redis.git synced 2025-09-10 07:11:50 +03:00

Merge pull request #1106 from go-redis/fix/bytes-unsafe

Use unsafe StringToBytes to speedup StringCmd.Bytes
This commit is contained in:
Vladimir Mihailenco
2019-07-27 17:14:01 +03:00
committed by GitHub

View File

@@ -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) {