class RedisProfilerStorage

RedisProfilerStorage stores profiling information in Redis.

@author Andrej Hudec <pulzarraider@gmail.com>

Hierarchy

Expanded class hierarchy of RedisProfilerStorage

1 file declares its use of RedisProfilerStorage

File

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

Namespace

Symfony\Component\HttpKernel\Profiler
View source

Members

Namesort descending Modifiers Type Description Overrides
RedisProfilerStorage::$dsn protected property
RedisProfilerStorage::$lifetime protected property
RedisProfilerStorage::$redis private property
RedisProfilerStorage::appendValue private function Appends data to an existing item on the Redis server.
RedisProfilerStorage::createProfileFromData private function
RedisProfilerStorage::delete private function Removes the specified keys.
RedisProfilerStorage::find public function Finds profiler tokens for the given criteria. Overrides ProfilerStorageInterface::find
RedisProfilerStorage::getIndexName private function Gets the name of the index.
RedisProfilerStorage::getItemName private function Gets the item name.
RedisProfilerStorage::getRedis protected function Internal convenience method that returns the instance of Redis.
RedisProfilerStorage::getValue private function Retrieves an item from the Redis server.
RedisProfilerStorage::isItemNameValid private function
RedisProfilerStorage::purge public function Purges all data from the database. Overrides ProfilerStorageInterface::purge
RedisProfilerStorage::read public function Reads data associated with the given token. Overrides ProfilerStorageInterface::read
RedisProfilerStorage::REDIS_OPT_PREFIX constant
RedisProfilerStorage::REDIS_OPT_SERIALIZER constant
RedisProfilerStorage::REDIS_SERIALIZER_NONE constant
RedisProfilerStorage::REDIS_SERIALIZER_PHP constant
RedisProfilerStorage::setRedis public function Set instance of the Redis
RedisProfilerStorage::setValue private function Stores an item on the Redis server under the specified key.
RedisProfilerStorage::TOKEN_PREFIX constant
RedisProfilerStorage::write public function Saves a Profile. Overrides ProfilerStorageInterface::write
RedisProfilerStorage::__construct public function Constructor.