Skip to content

Instantly share code, notes, and snippets.

@volkan
Created January 7, 2013 20:50
Show Gist options
  • Save volkan/4478266 to your computer and use it in GitHub Desktop.
Save volkan/4478266 to your computer and use it in GitHub Desktop.
<?php
$mc = new Memcached();
$mc->setOption(
Memcached::OPT_DISTRIBUTION,
Memcached::DISTRIBUTION_CONSISTENT
);
$mc->addServers(array(
array('localhost', 11211),
array('localhost', 11212),
array('localhost', 11213),
array('localhost', 11214)
));
for($i=0;$i<=10;$i++){
$mc->add('key_' . $i, $i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment