private function RedisProfilerStorage::getIndexName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Profiler/RedisProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\RedisProfilerStorage::getIndexName()
Gets the name of the index.
Return value
string
3 calls to RedisProfilerStorage::getIndexName()
- RedisProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php - Finds profiler tokens for the given criteria.
- RedisProfilerStorage::purge in vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php - Purges all data from the database.
- RedisProfilerStorage::write in vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php - Saves a Profile.
File
- vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php, line 304
Class
- RedisProfilerStorage
- RedisProfilerStorage stores profiling information in Redis.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
private function getIndexName() {
$name = 'index';
if ($this
->isItemNameValid($name)) {
return $name;
}
return false;
}