You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please add an ability to disable this feature when it's needed?
Developers should be able to set precise TTL when they really want to do that.
The text was updated successfully, but these errors were encountered:
privatefunctionexecuteSet($data, $time)
{
...
// We need to be able to disable this part
if ($cacheTime > 0) {
$expirationDiff = rand(0, floor($cacheTime * .15));
$expiration -= $expirationDiff;
}
The library has this code to slightly change the expiration time.
I know the reason, it's also discussed here.
Could you please add an ability to disable this feature when it's needed?
Developers should be able to set precise TTL when they really want to do that.
The text was updated successfully, but these errors were encountered: