Skip to content

Instantly share code, notes, and snippets.

@ukautz
ukautz / memcached-demo.php
Created February 16, 2017 11:36
Tuning memcached options for redundancy & fast failover
<?php
$servers = [
['10.0.0.1', 11211],
['10.0.0.1', 11212],
];
$id = 1;
$timeout = 50;
$mc = new \Memcached($id);