mirror of https://github.com/go-redis/redis.git
Compare commits
3 Commits
2c69e7e4dd
...
9719c7ecde
Author | SHA1 | Date |
---|---|---|
oldme | 9719c7ecde | |
oldme | b121fb8399 | |
oldme | 69005e6c3f |
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -140,6 +141,36 @@ func (w *Writer) WriteArg(v interface{}) error {
|
||||||
return w.bytes(b)
|
return w.bytes(b)
|
||||||
case net.IP:
|
case net.IP:
|
||||||
return w.bytes(v)
|
return w.bytes(v)
|
||||||
|
default:
|
||||||
|
return w.writeArgExtra(v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w *Writer) writeArgExtra(v interface{}) error {
|
||||||
|
var (
|
||||||
|
rfValue = reflect.ValueOf(v)
|
||||||
|
rfKind = rfValue.Kind()
|
||||||
|
)
|
||||||
|
|
||||||
|
switch rfKind {
|
||||||
|
case reflect.Bool:
|
||||||
|
if rfValue.Bool() {
|
||||||
|
return w.int(1)
|
||||||
|
}
|
||||||
|
return w.int(0)
|
||||||
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||||
|
return w.int(rfValue.Int())
|
||||||
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
||||||
|
return w.uint(rfValue.Uint())
|
||||||
|
case reflect.Float32, reflect.Float64:
|
||||||
|
return w.float(rfValue.Float())
|
||||||
|
case reflect.String:
|
||||||
|
return w.string(rfValue.String())
|
||||||
|
case reflect.Slice:
|
||||||
|
if rfValue.Type().Elem().Kind() == reflect.Uint8 {
|
||||||
|
return w.bytes(rfValue.Bytes())
|
||||||
|
}
|
||||||
|
fallthrough
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"redis: can't marshal %T (implement encoding.BinaryMarshaler)", v)
|
"redis: can't marshal %T (implement encoding.BinaryMarshaler)", v)
|
||||||
|
|
|
@ -362,6 +362,20 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
Expect(ip2).To(Equal(ip))
|
Expect(ip2).To(Equal(ip))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("should set and scan custom type", func() {
|
||||||
|
type customString string
|
||||||
|
|
||||||
|
val := customString("hello")
|
||||||
|
err := client.Set(ctx, "custom", val, 0).Err()
|
||||||
|
Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
|
var val2 string
|
||||||
|
err = client.Get(ctx, "custom").Scan(&val2)
|
||||||
|
Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
|
Expect(customString(val2)).To(Equal(val))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
var _ = Describe("Client timeout", func() {
|
var _ = Describe("Client timeout", func() {
|
||||||
|
|
Loading…
Reference in New Issue