class KeyValueMemoryFactory

Defines the key/value store factory for the database backend.

Hierarchy

Expanded class hierarchy of KeyValueMemoryFactory

File

drupal/core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php, line 13
Contains Drupal\Core\KeyValueStore\KeyValueMemoryFactory.

Namespace

Drupal\Core\KeyValueStore
View source
class KeyValueMemoryFactory {

  /**
   * Constructs a new key/value memory storage object for a given collection name.
   *
   * @param string $collection
   *   The name of the collection holding key and value pairs.
   * @return \Drupal\Core\KeyValueStore\MemoryStorage
   *   A key/value store implementation for the given $collection.
   */
  public function get($collection) {
    return new MemoryStorage($collection);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
KeyValueMemoryFactory::get public function Constructs a new key/value memory storage object for a given collection name.