PHP Velho Oeste 2024

Examples

Table of Contents

add a note add a note

User Contributed Notes 1 note

up
-16
swapniltiwhane at gmail dot com
9 years ago
$memcache = new Memcache;  //initialised memcahe
@$memcache->connect("127.0.0.1",11211);  // connect memcahe server
$cache = getCache(md5("mysql_query" . $sql));
//get sql query if already cached in memcahe
To Top