2014-05-16 11:03:23 +04:00
|
|
|
package server
|
2014-05-03 10:55:12 +04:00
|
|
|
|
2014-05-16 11:03:23 +04:00
|
|
|
import (
|
2014-08-26 19:21:45 +04:00
|
|
|
"strconv"
|
2015-05-04 17:42:28 +03:00
|
|
|
|
|
|
|
"github.com/siddontang/ledisdb/ledis"
|
2014-05-16 11:03:23 +04:00
|
|
|
)
|
2014-05-04 15:02:55 +04:00
|
|
|
|
2014-10-29 15:17:12 +03:00
|
|
|
// func getCommand(c *client) error {
|
|
|
|
// args := c.args
|
|
|
|
// if len(args) != 1 {
|
|
|
|
// return ErrCmdParams
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if v, err := c.db.Get(args[0]); err != nil {
|
|
|
|
// return err
|
|
|
|
// } else {
|
|
|
|
// c.resp.writeBulk(v)
|
|
|
|
// }
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func getCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-10-29 15:17:12 +03:00
|
|
|
if v, err := c.db.GetSlice(args[0]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-10-29 15:17:12 +03:00
|
|
|
if v == nil {
|
|
|
|
c.resp.writeBulk(nil)
|
|
|
|
} else {
|
|
|
|
c.resp.writeBulk(v.Data())
|
|
|
|
v.Free()
|
|
|
|
}
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func setCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-06-11 12:49:17 +04:00
|
|
|
if len(args) != 2 {
|
2014-05-04 15:02:55 +04:00
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if err := c.db.Set(args[0], args[1]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeStatus(OK)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func getsetCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if v, err := c.db.GetSet(args[0], args[1]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeBulk(v)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func setnxCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.SetNX(args[0], args[1]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-26 10:15:43 +03:00
|
|
|
func setexCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
sec, err := ledis.StrInt64(args[1], nil)
|
|
|
|
if err != nil {
|
|
|
|
return ErrValue
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.db.SetEX(args[0], sec, args[2]); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeStatus(OK)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func existsCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.Exists(args[0]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func incrCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.Incr(c.args[0]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func decrCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.Decr(c.args[0]); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func incrbyCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:03:23 +04:00
|
|
|
delta, err := ledis.StrInt64(args[1], nil)
|
2014-05-04 15:02:55 +04:00
|
|
|
if err != nil {
|
2014-07-25 13:26:29 +04:00
|
|
|
return ErrValue
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.IncrBy(c.args[0], delta); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func decrbyCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:03:23 +04:00
|
|
|
delta, err := ledis.StrInt64(args[1], nil)
|
2014-05-04 15:02:55 +04:00
|
|
|
if err != nil {
|
2014-07-25 13:26:29 +04:00
|
|
|
return ErrValue
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.DecrBy(c.args[0], delta); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func delCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) == 0 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.Del(args...); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func msetCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) == 0 || len(args)%2 != 0 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:03:23 +04:00
|
|
|
kvs := make([]ledis.KVPair, len(args)/2)
|
2014-05-16 04:56:32 +04:00
|
|
|
for i := 0; i < len(kvs); i++ {
|
|
|
|
kvs[i].Key = args[2*i]
|
|
|
|
kvs[i].Value = args[2*i+1]
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if err := c.db.MSet(kvs...); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeStatus(OK)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
2014-05-03 10:55:12 +04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
// func setexCommand(c *client) error {
|
2014-05-04 15:02:55 +04:00
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func mgetCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-05-04 15:02:55 +04:00
|
|
|
if len(args) == 0 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if v, err := c.db.MGet(args...); err != nil {
|
2014-05-04 15:02:55 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeSliceArray(v)
|
2014-05-04 15:02:55 +04:00
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func expireCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-06-30 07:23:14 +04:00
|
|
|
if len(args) != 2 {
|
2014-06-16 15:24:37 +04:00
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
duration, err := ledis.StrInt64(args[1], nil)
|
|
|
|
if err != nil {
|
2014-07-25 13:26:29 +04:00
|
|
|
return ErrValue
|
2014-06-16 15:24:37 +04:00
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if v, err := c.db.Expire(args[0], duration); err != nil {
|
2014-06-16 15:24:37 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(v)
|
2014-06-16 15:24:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func expireAtCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-06-30 07:23:14 +04:00
|
|
|
if len(args) != 2 {
|
2014-06-16 15:24:37 +04:00
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
when, err := ledis.StrInt64(args[1], nil)
|
|
|
|
if err != nil {
|
2014-07-25 13:26:29 +04:00
|
|
|
return ErrValue
|
2014-06-16 15:24:37 +04:00
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if v, err := c.db.ExpireAt(args[0], when); err != nil {
|
2014-06-16 15:24:37 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(v)
|
2014-06-16 15:24:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func ttlCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-06-30 07:23:14 +04:00
|
|
|
if len(args) != 1 {
|
2014-06-16 15:24:37 +04:00
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if v, err := c.db.TTL(args[0]); err != nil {
|
2014-06-16 15:24:37 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(v)
|
2014-06-16 15:24:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
func persistCommand(c *client) error {
|
|
|
|
args := c.args
|
2014-06-24 08:44:44 +04:00
|
|
|
if len(args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if n, err := c.db.Persist(args[0]); err != nil {
|
2014-06-24 08:44:44 +04:00
|
|
|
return err
|
|
|
|
} else {
|
2014-08-25 10:18:23 +04:00
|
|
|
c.resp.writeInteger(n)
|
2014-06-24 08:44:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-05 04:50:40 +03:00
|
|
|
func appendCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.Append(args[0], args[1]); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getrangeCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
start, err := strconv.Atoi(string(args[1]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
end, err := strconv.Atoi(string(args[2]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if v, err := c.db.GetRange(key, start, end); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeBulk(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func setrangeCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
offset, err := strconv.Atoi(string(args[1]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
value := args[2]
|
|
|
|
|
|
|
|
if n, err := c.db.SetRange(key, offset, value); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func strlenCommand(c *client) error {
|
|
|
|
if len(c.args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.StrLen(c.args[0]); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-05 10:37:17 +03:00
|
|
|
func parseBitRange(args [][]byte) (start int, end int, err error) {
|
|
|
|
start = 0
|
|
|
|
end = -1
|
|
|
|
if len(args) > 0 {
|
|
|
|
if start, err = strconv.Atoi(string(args[0])); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) == 2 {
|
|
|
|
if end, err = strconv.Atoi(string(args[1])); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func bitcountCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) == 0 || len(args) > 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
start, end, err := parseBitRange(args[1:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.BitCount(key, start, end); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func bitopCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) < 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
op := string(args[0])
|
|
|
|
destKey := args[1]
|
|
|
|
srcKeys := args[2:]
|
|
|
|
|
|
|
|
if n, err := c.db.BitOP(op, destKey, srcKeys...); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func bitposCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) < 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
bit, err := strconv.Atoi(string(args[1]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
start, end, err := parseBitRange(args[2:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.BitPos(key, bit, start, end); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getbitCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 2 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
offset, err := strconv.Atoi(string(args[1]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.GetBit(key, offset); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func setbitCommand(c *client) error {
|
|
|
|
args := c.args
|
|
|
|
if len(args) != 3 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
|
|
|
offset, err := strconv.Atoi(string(args[1]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
value, err := strconv.Atoi(string(args[2]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, err := c.db.SetBit(key, offset, value); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.resp.writeInteger(n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
func init() {
|
2015-02-05 04:50:40 +03:00
|
|
|
register("append", appendCommand)
|
2015-02-05 10:37:17 +03:00
|
|
|
register("bitcount", bitcountCommand)
|
|
|
|
register("bitop", bitopCommand)
|
|
|
|
register("bitpos", bitposCommand)
|
2014-05-03 10:55:12 +04:00
|
|
|
register("decr", decrCommand)
|
|
|
|
register("decrby", decrbyCommand)
|
|
|
|
register("del", delCommand)
|
|
|
|
register("exists", existsCommand)
|
|
|
|
register("get", getCommand)
|
2015-02-05 10:37:17 +03:00
|
|
|
register("getbit", getbitCommand)
|
2015-02-05 04:50:40 +03:00
|
|
|
register("getrange", getrangeCommand)
|
2014-05-03 10:55:12 +04:00
|
|
|
register("getset", getsetCommand)
|
|
|
|
register("incr", incrCommand)
|
|
|
|
register("incrby", incrbyCommand)
|
|
|
|
register("mget", mgetCommand)
|
|
|
|
register("mset", msetCommand)
|
|
|
|
register("set", setCommand)
|
2015-02-05 10:37:17 +03:00
|
|
|
register("setbit", setbitCommand)
|
2014-05-03 10:55:12 +04:00
|
|
|
register("setnx", setnxCommand)
|
2014-10-26 10:15:43 +03:00
|
|
|
register("setex", setexCommand)
|
2015-02-05 04:50:40 +03:00
|
|
|
register("setrange", setrangeCommand)
|
|
|
|
register("strlen", strlenCommand)
|
2014-06-16 15:24:37 +04:00
|
|
|
register("expire", expireCommand)
|
|
|
|
register("expireat", expireAtCommand)
|
|
|
|
register("ttl", ttlCommand)
|
2014-06-24 08:44:44 +04:00
|
|
|
register("persist", persistCommand)
|
2014-05-03 10:55:12 +04:00
|
|
|
}
|