ledisdb/server/const.go

31 lines
820 B
Go
Raw Normal View History

package server
2014-05-02 13:08:20 +04:00
import (
"errors"
)
var (
ErrEmptyCommand = errors.New("empty command")
ErrNotFound = errors.New("command not found")
2014-05-03 10:55:12 +04:00
ErrCmdParams = errors.New("invalid command param")
ErrValue = errors.New("value is not an integer or out of range")
2014-07-27 21:58:55 +04:00
ErrSyntax = errors.New("syntax error")
ErrOffset = errors.New("offset bit is not an natural number")
ErrBool = errors.New("value is not 0 or 1")
2014-05-02 13:08:20 +04:00
)
var (
Delims = []byte("\r\n")
NullBulk = []byte("-1")
NullArray = []byte("-1")
2014-05-03 10:55:12 +04:00
PONG = "PONG"
OK = "OK"
SErrCmdParams = "ERR invalid command param"
SErrValue = "ERR value is not an integer or out of range"
2014-07-27 21:58:55 +04:00
SErrSyntax = "ERR syntax error"
SErrOffset = "ERR offset bit is not an natural number"
SErrBool = "ERR value is not 0 or 1"
2014-05-02 13:08:20 +04:00
)