Set cache lock when concurrency is implemented using memcached

Source: Internet
Author: User
Tags memcached

Take advantage of the Add () method in memcached.

Memcached:add ($key) returns TRUE on success, or FALSE on failure. Returns False if this key already exists.

Use the atomicity of add to determine whether business code needs to be executed.

/** *  @param  null  $key  *  *  @author  [email protected] * /public function add_cache ($key =null) {     $memcacheClass  = new  Memcached ();     $data  =  $memcacheClass->get ($key);     if ( !  $data)  {        do {              $write _key =  ' write ';             if ($memcacheClass->add ($write _key,  $write _key, 10 *  60))  {                 //  Lock successfully, perform business operations                   $data  =  $model->get ();                  $memcacheClass->set ($key,  $data,  30 * 60); //  storing data in cache                   $memcacheClass->delete ( $write _key);                 $ Is_retry = false;            } else  {                //   If the lock is unsuccessful, wait for a period of time before retrying                  sleep (Ten);                  $is _retry = true;             }        } while ($is _retry);     }}


Set cache lock when concurrency is implemented using memcached

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.