mirror of
https://github.com/redis/go-redis.git
synced 2025-07-28 06:42:00 +03:00
Update readme.
This commit is contained in:
@ -28,6 +28,10 @@ func (c *Client) Ping() *StatusReq {
|
||||
return req
|
||||
}
|
||||
|
||||
func (c *Client) Quit() *StatusReq {
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
func (c *Client) Select(index int64) *StatusReq {
|
||||
req := NewStatusReq("SELECT", strconv.FormatInt(index, 10))
|
||||
c.Process(req)
|
||||
|
Reference in New Issue
Block a user