KeyValueMemoryFactory.php in Service Container 7.2
Same filename and directory in other branches
Namespace
Drupal\Core\KeyValueStoreFile
lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\KeyValueStore\KeyValueMemoryFactory.
*/
namespace Drupal\Core\KeyValueStore;
/**
* Defines the key/value store factory for the memory backend.
*/
class KeyValueMemoryFactory implements KeyValueFactoryInterface {
/**
* An array of keyvalue collections that are stored in memory.
*
* @var array
*/
protected $collections = array();
/**
* {@inheritdoc}
*/
public function get($collection) {
if (!isset($this->collections[$collection])) {
$this->collections[$collection] = new MemoryStorage($collection);
}
return $this->collections[$collection];
}
}
Classes
Name | Description |
---|---|
KeyValueMemoryFactory | Defines the key/value store factory for the memory backend. |