(rsp interface{})
| 67 | } |
| 68 | |
| 69 | func (c *Conn) String(rsp interface{}) string { |
| 70 | if s, err := redis.String(rsp, nil); err != nil { |
| 71 | panic(err) |
| 72 | } else { |
| 73 | return s |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | func (c *Conn) Values(rsp interface{}, size int) []interface{} { |
| 78 | if a, err := redis.Values(rsp, nil); err != nil { |