From 5176da3dfeba11ea313978c76e49ddf396cc9f1e Mon Sep 17 00:00:00 2001 From: Rupa Schomaker Date: Thu, 27 Aug 2009 16:07:36 +0000 Subject: [PATCH] add support for expires and flags for inc/dec operators expires based on first inc/dec operator, subsequent ones do not extend the lifetime of the object git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14649 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_memcache/mod_memcache.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/mod/applications/mod_memcache/mod_memcache.c b/src/mod/applications/mod_memcache/mod_memcache.c index 849107745b..a4303df1ce 100755 --- a/src/mod/applications/mod_memcache/mod_memcache.c +++ b/src/mod/applications/mod_memcache/mod_memcache.c @@ -44,7 +44,7 @@ SWITCH_MODULE_DEFINITION(mod_memcache, mod_memcache_load, mod_memcache_shutdown, static char *SYNTAX = "memcache [expiration [flags]]\n" "memcache \n" "memcache \n" - "memcache [offset]\n" + "memcache [offset [expires [flags]]]\n" "memcache \n" "memcache [verbose]\n"; @@ -232,12 +232,20 @@ SWITCH_STANDARD_API(memcache_function) unsigned int offset = 1; switch_bool_t increment = SWITCH_TRUE; char *svalue = NULL; - if(argc > 2) { + if (argc > 2) { offset = (unsigned int)strtol(argv[2], NULL, 10); svalue = argv[2]; } else { svalue = "1"; } + if(argc > 3) { + expires_str = argv[3]; + expires = (time_t)strtol(expires_str, NULL, 10); + } + if(argc > 4) { + flags_str = argv[4]; + flags = (uint32_t)strtol(flags_str, NULL, 16); + } if (!strcasecmp(subcmd, "increment")) { increment = SWITCH_TRUE; @@ -251,7 +259,7 @@ SWITCH_STANDARD_API(memcache_function) Try to add an appropriate initial value. If someone else beat us to it, then redo incr/decr. Otherwise we're good. */ - rc = memcached_add(memcached, key, strlen(key), (increment) ? svalue : "0", strlen(svalue), 0, 0); + rc = memcached_add(memcached, key, strlen(key), (increment) ? svalue : "0", strlen(svalue), expires, flags); if (rc == MEMCACHED_SUCCESS) { ivalue = (increment) ? offset : 0; switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Initialized inc/dec memcache key: %s to value %d\n", key, offset);