代码拉取完成,页面将自动刷新
package memcache
// All memcache protocol errors are defined here.
import (
"errors"
)
var (
ErrNotImplemented = errors.New("not implemented")
)
// memcache text parser errors
var (
ErrParserCaughtInError = errors.New("memcache parser caught in error loop")
ErrParserUnknownCommand = errors.New("unknown memcache command found")
ErrNoMoreArgument = errors.New("no more command arguments")
ErrExpectedNumber = errors.New("expected number value")
ErrExpectedNoReply = errors.New("expected noreply in argument list")
ErrExpectedCRLF = errors.New("expected CRLF")
ErrExpectedKeys = errors.New("message has no keys")
)
// memcache binary parser errors
var (
ErrInvalidMemcacheMagic = errors.New("invalid memcache magic number")
ErrLen = errors.New("length field error")
)
// memcache UDP errors
var (
ErrUdpIncompleteMessage = errors.New("attempt to parse incomplete message failed")
)
// memcache transaction/message errors
var (
ErrInvalidMessage = errors.New("message is invalid")
ErrMixOfBinaryAndText = errors.New("mix of binary and text in one connection")
ErrResponseUnknownTransaction = errors.New("response from unknown transaction")
ErrExpectedValueForMerge = errors.New("expected value to merge with")
ErrExpectedStatsForMerge = errors.New("expected stat respose to merge with")
)
// internal notes to be published with transaction
var (
NoteRequestPacketLoss = "Packet loss while capturing the request"
NoteResponsePacketLoss = "Packet loss while capturing the response"
NoteTransactionNoRequ = "Invalid transaction. Request missing"
NoteNonQuietResponseOnly = "Missing response for non-quiet request"
NoteTransUnfinished = "Unfinished transaction"
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。