Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DatabaseBackend.php

function DatabaseBackend::deleteMultiple

Overrides CacheBackendInterface::deleteMultiple

1 call to DatabaseBackend::deleteMultiple()
DatabaseBackend::delete in core/lib/Drupal/Core/Cache/DatabaseBackend.php
Deletes an item from the cache.

File

core/lib/Drupal/Core/Cache/DatabaseBackend.php, line 310

Class

DatabaseBackend
Defines a default cache implementation.

Namespace

Drupal\Core\Cache

Code

public function deleteMultiple(array $cids) {
    $cids = array_values(array_map([
        $this,
        'normalizeCid',
    ], $cids));
    try {
        // Delete in chunks when a large array is passed.
        foreach (array_chunk($cids, 1000) as $cids_chunk) {
            $this->connection
                ->delete($this->bin)
                ->condition('cid', $cids_chunk, 'IN')
                ->execute();
        }
    } catch (\Exception $e) {
        // Create the cache table, which will be empty. This fixes cases during
        // core install where a cache table is cleared before it is set
        // with {cache_render} and {cache_data}.
        if (!$this->ensureBinExists()) {
            $this->catchException($e);
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal