function ad_memcache_increment_map in Advertisement 5
Same name and namespace in other branches
- 5.2 cache/memcache/ad_cache_memcache.inc \ad_memcache_increment_map()
- 6 cache/memcache/ad_cache_memcache.inc \ad_memcache_increment_map()
Update mapping which allows us to quickly find stats in memcache when feeding them into the database.
1 call to ad_memcache_increment_map()
- ad_cache_memcache_increment in cache/
memcache/ ad_cache_memcache.inc - Increment view counter in memcache.
File
- cache/
memcache/ ad_cache_memcache.inc, line 323
Code
function ad_memcache_increment_map($action, $aid, $group, $hostid, $timestamp) {
$key = "ad-counters-{$aid}";
if (ad_memcache_lock($key)) {
$counters = ad_memcache_get($key);
if (!is_array($counters) || !isset($counters["{$action}:{$group}:{$hostid}:{$timestamp}"])) {
$counters["{$action}:{$group}:{$hostid}:{$timestamp}"] = "{$action}:{$group}:{$hostid}:{$timestamp}";
ad_memcache_set($key, $counters);
}
ad_memcache_unlock($key);
}
}