PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, seven)?
(Example: nine)

The Note You're Voting On

info at qmegas dot info
4 years ago
Be careful when updating same key with ttl set during same request. For example:
<?php
for ($i = 0; $i < 20; $i++) {
apcu_store('test', $i, 10);
sleep(1);
}
?>

After 10 seconds the key will become not available and won't be updated. Tested on Windows and Linux platforms. Not sure if it's a bug or undocumented behavior.

<< Back to user notes page

To Top