--- parser3/src/classes/memcached.C 2012/06/17 21:46:47 1.7 +++ parser3/src/classes/memcached.C 2012/06/17 21:52:04 1.8 @@ -15,7 +15,7 @@ #include "pa_vbool.h" #include "pa_vmemcached.h" -volatile const char * IDENT_MEMCACHED_C="$Id: memcached.C,v 1.7 2012/06/17 21:46:47 moko Exp $"; +volatile const char * IDENT_MEMCACHED_C="$Id: memcached.C,v 1.8 2012/06/17 21:52:04 moko Exp $"; class MMemcached: public Methoded { public: // VStateless_class @@ -50,7 +50,7 @@ static void _open(Request& r, MethodPara } } -static void _flush(Request& r, MethodParams& params) { +static void _clear(Request& r, MethodParams& params) { VMemcached& self=GET_SELF(r, VMemcached); time_t ttl=(params.count()>0) ? params.as_int(0, "expiration must be int", r) : 0; @@ -102,7 +102,7 @@ static void _delete(Request& r, MethodPa MMemcached::MMemcached() : Methoded("memcached") { add_native_method("open", Method::CT_DYNAMIC, _open, 1, 2); - add_native_method("flush", Method::CT_DYNAMIC, _flush, 0, 1); + add_native_method("clear", Method::CT_DYNAMIC, _clear, 0, 1); add_native_method("mget", Method::CT_DYNAMIC, _mget, 1, 1000); add_native_method("add", Method::CT_DYNAMIC, _add, 2, 2); add_native_method("delete", Method::CT_DYNAMIC, _delete, 1, 1);