summaryrefslogtreecommitdiff
path: root/memc-nginx-module-0.20/src/memc_flush_all.rl
blob: 74c7288c5af64f9dcfcd97a263bbb6e3f4b30d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%%{
    machine memc_flush_all;

    alphtype short;

    include memc_common "memc_common.rl";

    response = "OK\r\n"
             | error
             ;

    main := response @finalize
         ;

}%%