1
0
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:
Vladimir Mihailenco
2012-08-25 15:40:49 +03:00
parent e40a6041e1
commit 1f7cc3fea5
2 changed files with 25 additions and 21 deletions

View File

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