You are here

function DatabaseStorageExpirable::setWithExpire in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php \Drupal\Core\KeyValueStore\DatabaseStorageExpirable::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.

Overrides KeyValueStoreExpirableInterface::setWithExpire

1 call to DatabaseStorageExpirable::setWithExpire()
DatabaseStorageExpirable::setMultipleWithExpire in core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
Saves an array of values with a time to live.

File

core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php, line 79
Contains \Drupal\Core\KeyValueStore\DatabaseStorageExpirable.

Class

DatabaseStorageExpirable
Defines a default key/value store implementation for expiring items.

Namespace

Drupal\Core\KeyValueStore

Code

function setWithExpire($key, $value, $expire) {
  $this->connection
    ->merge($this->table)
    ->keys(array(
    'name' => $key,
    'collection' => $this->collection,
  ))
    ->fields(array(
    'value' => $this->serializer
      ->encode($value),
    'expire' => REQUEST_TIME + $expire,
  ))
    ->execute();
}