You are here

public function CacheStub::Clear in Drupal driver for SQL Server and SQL Azure 8.2

Clear a cache item.

Parameters

string $cid:

Overrides CacheInterface::Clear

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Component/CacheStub.php, line 51

Class

CacheStub
Stub implementation for the cache backend.

Namespace

Drupal\Driver\Database\sqlsrv\Component

Code

public function Clear($cid) {
  unset($this->data[$cid]);
}