From 1a8d11416e24d21c324614bbe3631c9b6dac08a0 Mon Sep 17 00:00:00 2001 From: NewsBUZZ Date: Wed, 30 Sep 2015 16:47:21 +0300 Subject: [PATCH] Update mcache.php --- mcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcache.php b/mcache.php index fe829aa..79ab38a 100644 --- a/mcache.php +++ b/mcache.php @@ -2,7 +2,7 @@ class mcache extends Memcache { public $def_host = 'localhost'; - public $def_port = '12000'; + public $def_port = '11211'; public function __construct($host = null,$port = null){ $host = isset($host)?$host:$this->def_host; $port = isset($port)?$port:$this->def_port;