Basic phpmemcache operations

Source: Internet
Author: User
Tags delete cache
Phpmemcache cache none? Php *** Memcache cache operation ** @ authorhxm * @ version1.0 * @ since2015.05.04 * classMCacheextendsObjectimplementsCacheFace {private $ memnull; Mem object private $ sId1; servier service ID *** initialize Memcache ** @ retur

Phpmemcache cache none? Php/*** Memcache cache operation * @ author hxm * @ version 1.0 * @ since 2015.05.04 */class MCache extends Object implements CacheFace {private $ mem = null; // Mem object private $ sId = 1; // servier service ID/*** initialize Memcache ** @ retur

Php memcache Cache <无>
  Mem = new Memcache ();} /*** link memcahce service ** @ accessprivate * @ paramstring $ key keyword * @ paramstring $ value cached content * @ returnarray */private function connect ($ sid) {$ file = $ this-> CacheFile (); require $ file; if (! Isset ($ cache) {throw new QException ('cache configuration file does not exist '. $ file) ;}$ server = $ cache [$ this-> cacheId]; $ sid = isset ($ sid) = 0? $ This-> sId: $ sid; // select if (! $ Server [$ sid]) {throw new QException ('current cache server configuration file does not exist');} $ host = $ server [$ sid] ['host']; $ port = $ server [$ sid] ['Port']; try {$ this-> mem-> connect ($ host, $ port);} catch (Exception $ e) {exit ('memecache connection failed, error message :'. $ e-> getMessage ());}} /*** write cache ** @ accessprivate * @ paramstring $ key keyword * @ paramstring $ value cached content * @ returnarray */public function set ($ key, $ value, $ sid, $ expire = 0) {$ data = $ this-> g Et ($ key, $ sid); // if the key value if ($ data) {return $ this-> mem-> set ($ key, $ value, MEMCACHE_COMPRESSED, $ expire);} else {return $ this-> mem-> add ($ key, $ value, MEMCACHE_COMPRESSED, $ expire );}} /*** read cache ** @ accessprivate * @ paramstring $ key keyword * @ param int $ sid select the number of memcache servers * @ returnarray */public function get ($ key, $ sid) {$ this-> connect ($ sid); return $ this-> mem-> get ($ key);}/*** clean (delete) stored All elements of ** @ accessprivate * @ returnarray */public function flush () {$ this-> connect (); return $ this-> mem-> flush ();} /*** Delete cache ** @ accessprivate * @ paramstring $ key keyword * @ param int $ sid select the number of memcache servers * @ returnarray */public function remove ($ key, $ sid) {$ this-> connect (); return $ this-> mem-> delete ($ key );} /* destructor * finally disable memcache */public function _ destruct () {/* if (! $ This-> mem) {$ this-> mem-> close ();}*/}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.