blob: 29b145ec88c2deeb43e99fac0404dab486ad6a46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
$config = array(
"default" => array(
"hostname" => "127.0.0.1",
"port" => 11211,
"weight" => 1,
),
"socket" => array(
"hostname" => FCPATH.'/memcached.sock',
"port" => 0,
"weight" => 2,
),
);
?>
|