vote up 1 vote down star

I'm trying to update a variable in APC, and will be many processes trying to do that.

APC doesn't provide locking functionality, so I'm considering using other mechanisms... what I've found so far is mysql's GET_LOCK(), and php's flock(). Anything else worth considering?

Update: I've found sem_acquire, but it seems to be a blocking lock.

flag

64% accept rate
What does the variable contain, exactly; why are you worried about locking? You may be able to work around the problem. – Rob Nov 28 '08 at 16:41

4 Answers

vote up 1 vote down

If you don't mind basing your lock on the filesystem, then you could use fopen() with mode 'x'. Here is an example:

$f = fopen("lockFile.txt", 'x');
if($f) {
    $me = getmypid();
    $now = date('Y-m-d H:i:s');
    fwrite($f, "Locked by $me at $now\n");
    fclose($f);
    doStuffInLock();
    unlink("lockFile.txt"); // unlock        
}
else {
    echo "File is locked: " . get_file_contents("lockFile.txt");
    exit;
}

See www.php.net/fopen

link|flag
As long as you never need NFS, this probably the easiest solution. Though there is a good chance of getting a race condition or worse a pile up if the locking script crashes before freeing the flock. – David Dec 2 '08 at 19:24
Yes, you can get a pile up if the script crashes, but there are ways to work around that, or at least detect the problem using the PID and time written inside the lock file and send an email. – too much php Dec 3 '08 at 4:19
vote up 0 vote down

Actually, check to see if this will work better then Peter's suggestion.

http://us2.php.net/flock

use an exclusive lock and if your comfortable with it, put everything else that attempted to lock the file in a 2-3 second sleep. If done right your site will experience a hang regarding the locked resource but not a horde of scripts fighting to cache the samething.

link|flag
vote up 0 vote down

If the point of the lock is to prevent multiple processes from trying to populate an empty cache key, why wouldn't you want to have a blocking lock?


  $value = apc_fetch($KEY);

  if ($value === FALSE) {
      shm_acquire($SEMAPHORE);

      $recheck_value = apc_fetch($KEY);
      if ($recheck_value !== FALSE) {
        $new_value = expensive_operation();
        apc_store($KEY, $new_value);
        $value = $new_value;
      } else {
        $value = $recheck_value;
      }

      shm_release($SEMAPHORE);
   }

If the cache is good, you just roll with it. If there's nothing in the cache, you get a lock. Once you have the lock, you'll need to double-check the cache to make sure that, while you were waiting to get the lock, the cache wasn't repopulated. If the cache was repopulated, use that value & release the lock, otherwise, you do the computation, populate the cache & then release your lock.

link|flag
The reason for not using a blocking lock is that since there'll be loads of those processes, it would significantly slow them down. I'd rather them not to update the variable than wait and cause a meltdown as they accumulate. – tpk Dec 3 '08 at 17:27
vote up 0 vote down

What I've found, actually, is that I don't need any locking at all... given what I'm trying to create is a map of all the class => path associations for autoload, it doesn't matter if one process overwrites what the other one has found (it's highly unlikely, if coded properly), because the data will get there eventually anyway. So, the solution turned out to be "no locks".

link|flag
If that's the case, you should close the question. – R. Bemrose Dec 3 '08 at 17:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.