You are here

private function RedisProfilerStorage::delete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Profiler/RedisProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\RedisProfilerStorage::delete()

Removes the specified keys.

Parameters

array $keys:

Return value

bool

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

File

vendor/symfony/http-kernel/Profiler/RedisProfilerStorage.php, line 390

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);
}