Removes the specified keys.
Parameters
array $keys:
Return value
Boolean
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);
}