public function KeyValueStoreExpirableInterface::setWithExpire in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire()
Saves a value for a given key with a time to live.
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.
2 methods override KeyValueStoreExpirableInterface::setWithExpire()
- DatabaseStorageExpirable::setWithExpire in lib/
Drupal/ Core/ KeyValueStore/ DatabaseStorageExpirable.php - Saves a value for a given key with a time to live.
- NullStorageExpirable::setWithExpire in lib/
Drupal/ Core/ KeyValueStore/ NullStorageExpirable.php - Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire().
File
- lib/
Drupal/ Core/ KeyValueStore/ KeyValueStoreExpirableInterface.php, line 25 - Contains \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface.
Class
- KeyValueStoreExpirableInterface
- Defines the interface for expiring data in a key/value store.
Namespace
Drupal\Core\KeyValueStoreCode
public function setWithExpire($key, $value, $expire);