Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 827347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T03:33:38+00:00 2026-05-15T03:33:38+00:00

See this simple piece of code in PHP: //Documentation: //memcache_set ( string $key ,

  • 0

See this simple piece of code in PHP:

//Documentation:
//memcache_set ( string $key , mixed $var [, int $flag [, int $expire ]] )
//memcache_increment ( string $key [, int $value = 1 ] )

//part 1
memcache_set ( 'id' , 1 , 0 , 60 );

//part 2
$id = memcache_increment ( 'id' , 1 );

And now imagine that the incrementing “part 2” is called from many independent clients and every is getting its unique ID.

Qestion is: How extend expiration of value ‘id’ with keeping consistency of value? Keep in mind that everytime some client can come to increment the value.

Some ideas how solve this problem:

Try to be fast

memcache_set( 'id' , memcache_get( 'id'  ) , 0 , 60 );

But here is time hole between get and set and other client at time can change the value.(?)

Use semaphore e.g.:

not much effective…

memcache_set ( 'lock' , 1 , 0 , 60 );
memcache_set( 'id' , memcache_get( 'id'  ) , 0 , 60 );
memcache_delete( 'lock' ); 
//client will not increment if the lock is present and wait for lock will get out

use memcache_delete:

memcache::delete  ( 'id' , 60 );

documentation is lack of what happened if you call it twice. Should it extend Expiration of first call or not?

Last surprising example (try it your self):

$memcache_obj = new Memcache;
$memcache_obj->connect('127.0.0.1', 11211);
$memcache_obj->set('id', '1', 0 , 30);

echo "*" . $memcache_obj->get('id') . "\n" ;

$memcache_obj->increment('id');
echo "*" . $memcache_obj->get('id') . "\n" ;

echo " now delete with timeout..." . "\n";
$memcache_obj->delete('id' , 10 )  . "\n" ;
echo "*" . $memcache_obj->get('id')  . "\n" ;

sleep(11);
echo "*" . $memcache_obj->get('id')  . "\n" ;

Returns me:

*1
*2
 now delete with timeout...
*
*
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T03:33:39+00:00Added an answer on May 15, 2026 at 3:33 am

    Use the memcached extension instead of memcache, which supports cas tokens: http://php.net/manual/en/memcached.cas.php The example there is pretty much self-explanatory.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 428k
  • Answers 428k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer This isn't going to work due to security restrictions. You… May 15, 2026 at 1:07 pm
  • Editorial Team
    Editorial Team added an answer You can't change the color of the border directly, but,… May 15, 2026 at 1:07 pm
  • Editorial Team
    Editorial Team added an answer These tasks are present in the ant-starteam.jar. I've noticed my… May 15, 2026 at 1:07 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.