Skip to content

Instantly share code, notes, and snippets.

@sylweriusz
Last active February 21, 2016 21:31
Show Gist options
  • Select an option

  • Save sylweriusz/33cf9749406ba1cf2d66 to your computer and use it in GitHub Desktop.

Select an option

Save sylweriusz/33cf9749406ba1cf2d66 to your computer and use it in GitHub Desktop.
<?php private function connect()
{
if (!$this->memcached)
{
$this->memcached = new Memcached('pool');
$this->memcached->setOption(Memcached::OPT_COMPRESSION, true);
if (count($this->memcached->getServerList()) < 1)
{
$this->memcached->addServer('127.0.0.1', 11211, 33);
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment