Snc\RedisBundle\Profiler\Storage\RedisProfilerStorage::write PHP Method

write() public method

public write ( Symfony\Component\HttpKernel\Profiler\Profile $profile )
$profile Symfony\Component\HttpKernel\Profiler\Profile
    public function write(Profile $profile)
    {
        $data = array('token' => $profile->getToken(), 'parent' => $profile->getParentToken(), 'children' => array_map(function ($p) {
            return $p->getToken();
        }, $profile->getChildren()), 'data' => $profile->getCollectors(), 'ip' => $profile->getIp(), 'method' => $profile->getMethod(), 'url' => $profile->getUrl(), 'time' => $profile->getTime());
        $profileIndexed = $this->getValue($this->getItemName($profile->getToken()));
        if ($this->setValue($this->getItemName($profile->getToken()), $data, $this->lifetime, self::REDIS_SERIALIZER_PHP)) {
            if (!$profileIndexed) {
                // Add to index
                $indexName = $this->getIndexName();
                $indexRow = implode("\t", array($profile->getToken(), $profile->getIp(), $profile->getMethod(), $profile->getUrl(), $profile->getTime(), $profile->getParentToken(), $profile->getStatusCode())) . "\n";
                return $this->appendValue($indexName, $indexRow, $this->lifetime);
            }
            return true;
        }
        return false;
    }