diff --git a/tools/flush_memcache.py b/tools/flush_memcache.py new file mode 100755 index 0000000..51af925 --- /dev/null +++ b/tools/flush_memcache.py @@ -0,0 +1,5 @@ +#!/usr/bin/python +import memcache + +mc = memcache.Client(['127.0.0.1:11211']) +mc.flush_all()