/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Cache
NameSizeModeActions
Console/-0755rm
Events/-0755rm
RateLimiting/-0755rm
ApcStore.php25860755editdlrm
ApcWrapper.php18980755editdlrm
ArrayLock.php20800644editdlrm
ArrayStore.php46610644editdlrm
CacheLock.php18530644editdlrm
CacheManager.php106500755editdlrm
CacheServiceProvider.php13500755editdlrm
composer.json13770755editdlrm
DatabaseLock.php36400644editdlrm
DatabaseStore.php103530755editdlrm
DynamoDbLock.php14860644editdlrm
DynamoDbStore.php148330644editdlrm
FileStore.php86120755editdlrm
HasCacheLock.php6810644editdlrm
LICENSE.md10750644editdlrm
Lock.php35470644editdlrm
LuaScripts.php4620644editdlrm
MemcachedConnector.php23820755editdlrm
MemcachedLock.php14530644editdlrm
MemcachedStore.php63260755editdlrm
NoLock.php6920644editdlrm
NullStore.php24080755editdlrm
PhpRedisLock.php31210644editdlrm
RateLimiter.php49890644editdlrm
RedisLock.php17940644editdlrm
RedisStore.php81680755editdlrm
RedisTaggedCache.php47970644editdlrm
Repository.php164720755editdlrm
RetrievesMultipleKeys.php11550644editdlrm
TaggableStore.php4210644editdlrm
TaggedCache.php25320644editdlrm
TagSet.php25170644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Cache/PhpRedisLock.php (3121B)
redis->eval( LuaScripts::releaseLock(), 1, $this->name, $this->serializedAndCompressedOwner() ); } /** * Get the owner key, serialized and compressed. * * @return string * * @throws \UnexpectedValueException */ protected function serializedAndCompressedOwner(): string { $client = $this->redis->client(); $owner = $client->_serialize($this->owner); // https://github.com/phpredis/phpredis/issues/1938 if ($this->compressed()) { if ($this->lzfCompressed()) { $owner = \lzf_compress($owner); } elseif ($this->zstdCompressed()) { $owner = \zstd_compress($owner, $client->getOption(Redis::OPT_COMPRESSION_LEVEL)); } elseif ($this->lz4Compressed()) { $owner = \lz4_compress($owner, $client->getOption(Redis::OPT_COMPRESSION_LEVEL)); } else { throw new UnexpectedValueException(sprintf( 'Unknown phpredis compression in use [%d]. Unable to release lock.', $client->getOption(Redis::OPT_COMPRESSION) )); } } return $owner; } /** * Determine if compression is enabled. * * @return bool */ protected function compressed(): bool { return $this->redis->client()->getOption(Redis::OPT_COMPRESSION) !== Redis::COMPRESSION_NONE; } /** * Determine if LZF compression is enabled. * * @return bool */ protected function lzfCompressed(): bool { return defined('Redis::COMPRESSION_LZF') && $this->redis->client()->getOption(Redis::OPT_COMPRESSION) === Redis::COMPRESSION_LZF; } /** * Determine if ZSTD compression is enabled. * * @return bool */ protected function zstdCompressed(): bool { return defined('Redis::COMPRESSION_ZSTD') && $this->redis->client()->getOption(Redis::OPT_COMPRESSION) === Redis::COMPRESSION_ZSTD; } /** * Determine if LZ4 compression is enabled. * * @return bool */ protected function lz4Compressed(): bool { return defined('Redis::COMPRESSION_LZ4') && $this->redis->client()->getOption(Redis::OPT_COMPRESSION) === Redis::COMPRESSION_LZ4; } }