private function RedisProfilerStorage::delete

Removes the specified keys.

Parameters

array $keys:

Return value

Boolean

1 call to RedisProfilerStorage::delete()
RedisProfilerStorage::purge in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php
Purges all data from the database.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php, line 389

Class

RedisProfilerStorage
RedisProfilerStorage stores profiling information in Redis.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

private function delete(array $keys) {
  return (bool) $this
    ->getRedis()
    ->delete($keys);
}