コード例 #1
0
ファイル: action.go プロジェクト: no2key/memcachep
func SetAction(req *memcachep.MCRequest, res *memcachep.MCResponse) {
	res.Fatal = false
	data[req.Key] = string(req.Value)
	res.Status = memcachep.STORED
}
コード例 #2
0
ファイル: run.go プロジェクト: kissthink/scanfile
func GetAction(req *memcachep.MCRequest, res *memcachep.MCResponse) {
	res.Fatal = false
	key := req.Key
	content := scanfile.MemScan(mf, &key)
	res.Value = []byte(string(content))
}
コード例 #3
0
ファイル: action.go プロジェクト: no2key/memcachep
func GetAction(req *memcachep.MCRequest, res *memcachep.MCResponse) {
	res.Fatal = false
	res.Value = []byte(data[req.Key])
}