blob: b64a441e07b83285ec968d9886f9eca49eb1d9f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
%%{
machine memc_storage;
include memc_common "memc_common.rl";
response = "STORED\r\n" @handle_stored
| "NOT_STORED\r\n"
| "EXISTS\r\n"
| "NOT_FOUND\r\n" @handle_not_found
| error
;
main := response @finalize
;
}%%
|