protected function DatabaseStorageExpirable::doSetWithExpireIfNotExists in Drupal 9
Sets a value for a given key with a time to live if it does not yet exist.
This will be called by setWithExpireIfNotExists() within a try block.
Parameters
string $key: The key of the data to store.
mixed $value: The data to store.
int $expire: The time to live for items, in seconds.
Return value
bool TRUE if the data was set, or FALSE if it already existed.
1 call to DatabaseStorageExpirable::doSetWithExpireIfNotExists()
- DatabaseStorageExpirable::setWithExpireIfNotExists in core/
lib/ Drupal/ Core/ KeyValueStore/ DatabaseStorageExpirable.php - Sets a value for a given key with a time to live if it does not yet exist.
File
- core/
lib/ Drupal/ Core/ KeyValueStore/ DatabaseStorageExpirable.php, line 150
Class
- DatabaseStorageExpirable
- Defines a default key/value store implementation for expiring items.
Namespace
Drupal\Core\KeyValueStoreCode
protected function doSetWithExpireIfNotExists($key, $value, $expire) {
if (!$this
->has($key)) {
$this
->setWithExpire($key, $value, $expire);
return TRUE;
}
return FALSE;
}