Skip to content

Instantly share code, notes, and snippets.

@italoveloso
Created December 30, 2013 13:22
Show Gist options
  • Save italoveloso/8182045 to your computer and use it in GitHub Desktop.
Save italoveloso/8182045 to your computer and use it in GitHub Desktop.
Count hits with memcached
$key = 'count_news_'.$id;
if(!$this->memcache->get($key))
$this->memcache->set($key, 0);
$this->memcache->increment($key);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment