Home
last modified time | relevance | path

Searched refs:capSize (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRedisHandler.php38 protected $capSize; variable in Monolog\\Handler\\RedisHandler
43 * @param int $capSize Number of entries to limit list size to, 0 = unlimited
45 …ion __construct($redis, string $key, $level = Logger::DEBUG, bool $bubble = true, int $capSize = 0) argument
53 $this->capSize = $capSize;
63 if ($this->capSize) {
82 ->ltrim($this->redisKey, -$this->capSize, -1)
86 $capSize = $this->capSize;
87 $this->redisClient->transaction(function ($tx) use ($record, $redisKey, $capSize) {
89 $tx->ltrim($redisKey, -$capSize, -1);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md336 * Added $capSize in RedisHandler to cap the log size