diff options
| author | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
|---|---|---|
| committer | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
| commit | bf6655a534a6775d30cafa67bd801276bda1d98d (patch) | |
| tree | c6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/symfony/cache/Traits/RedisCluster5Proxy.php | |
| parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
| download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.tar.gz AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.tar.bz2 AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip | |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/symfony/cache/Traits/RedisCluster5Proxy.php')
| -rw-r--r-- | vendor/symfony/cache/Traits/RedisCluster5Proxy.php | 983 |
1 files changed, 983 insertions, 0 deletions
diff --git a/vendor/symfony/cache/Traits/RedisCluster5Proxy.php b/vendor/symfony/cache/Traits/RedisCluster5Proxy.php new file mode 100644 index 0000000..511c53d --- /dev/null +++ b/vendor/symfony/cache/Traits/RedisCluster5Proxy.php | |||
| @@ -0,0 +1,983 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | /* | ||
| 4 | * This file is part of the Symfony package. | ||
| 5 | * | ||
| 6 | * (c) Fabien Potencier <fabien@symfony.com> | ||
| 7 | * | ||
| 8 | * For the full copyright and license information, please view the LICENSE | ||
| 9 | * file that was distributed with this source code. | ||
| 10 | */ | ||
| 11 | |||
| 12 | namespace Symfony\Component\Cache\Traits; | ||
| 13 | |||
| 14 | use Symfony\Component\VarExporter\LazyObjectInterface; | ||
| 15 | use Symfony\Component\VarExporter\LazyProxyTrait; | ||
| 16 | use Symfony\Contracts\Service\ResetInterface; | ||
| 17 | |||
| 18 | // Help opcache.preload discover always-needed symbols | ||
| 19 | class_exists(\Symfony\Component\VarExporter\Internal\Hydrator::class); | ||
| 20 | class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectRegistry::class); | ||
| 21 | class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectState::class); | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @internal | ||
| 25 | */ | ||
| 26 | class RedisCluster5Proxy extends \RedisCluster implements ResetInterface, LazyObjectInterface | ||
| 27 | { | ||
| 28 | use LazyProxyTrait { | ||
| 29 | resetLazyObject as reset; | ||
| 30 | } | ||
| 31 | |||
| 32 | private const LAZY_OBJECT_PROPERTY_SCOPES = []; | ||
| 33 | |||
| 34 | public function __construct($name, $seeds = null, $timeout = null, $read_timeout = null, $persistent = null, #[\SensitiveParameter] $auth = null) | ||
| 35 | { | ||
| 36 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->__construct(...\func_get_args()); | ||
| 37 | } | ||
| 38 | |||
| 39 | public function _masters() | ||
| 40 | { | ||
| 41 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_masters(...\func_get_args()); | ||
| 42 | } | ||
| 43 | |||
| 44 | public function _prefix($key) | ||
| 45 | { | ||
| 46 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_prefix(...\func_get_args()); | ||
| 47 | } | ||
| 48 | |||
| 49 | public function _redir() | ||
| 50 | { | ||
| 51 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_redir(...\func_get_args()); | ||
| 52 | } | ||
| 53 | |||
| 54 | public function _serialize($value) | ||
| 55 | { | ||
| 56 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_serialize(...\func_get_args()); | ||
| 57 | } | ||
| 58 | |||
| 59 | public function _unserialize($value) | ||
| 60 | { | ||
| 61 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_unserialize(...\func_get_args()); | ||
| 62 | } | ||
| 63 | |||
| 64 | public function _compress($value) | ||
| 65 | { | ||
| 66 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_compress(...\func_get_args()); | ||
| 67 | } | ||
| 68 | |||
| 69 | public function _uncompress($value) | ||
| 70 | { | ||
| 71 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_uncompress(...\func_get_args()); | ||
| 72 | } | ||
| 73 | |||
| 74 | public function _pack($value) | ||
| 75 | { | ||
| 76 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_pack(...\func_get_args()); | ||
| 77 | } | ||
| 78 | |||
| 79 | public function _unpack($value) | ||
| 80 | { | ||
| 81 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->_unpack(...\func_get_args()); | ||
| 82 | } | ||
| 83 | |||
| 84 | public function acl($key_or_address, $subcmd, ...$args) | ||
| 85 | { | ||
| 86 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->acl(...\func_get_args()); | ||
| 87 | } | ||
| 88 | |||
| 89 | public function append($key, $value) | ||
| 90 | { | ||
| 91 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->append(...\func_get_args()); | ||
| 92 | } | ||
| 93 | |||
| 94 | public function bgrewriteaof($key_or_address) | ||
| 95 | { | ||
| 96 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bgrewriteaof(...\func_get_args()); | ||
| 97 | } | ||
| 98 | |||
| 99 | public function bgsave($key_or_address) | ||
| 100 | { | ||
| 101 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bgsave(...\func_get_args()); | ||
| 102 | } | ||
| 103 | |||
| 104 | public function bitcount($key) | ||
| 105 | { | ||
| 106 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bitcount(...\func_get_args()); | ||
| 107 | } | ||
| 108 | |||
| 109 | public function bitop($operation, $ret_key, $key, ...$other_keys) | ||
| 110 | { | ||
| 111 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bitop(...\func_get_args()); | ||
| 112 | } | ||
| 113 | |||
| 114 | public function bitpos($key, $bit, $start = null, $end = null) | ||
| 115 | { | ||
| 116 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bitpos(...\func_get_args()); | ||
| 117 | } | ||
| 118 | |||
| 119 | public function blpop($key, $timeout_or_key, ...$extra_args) | ||
| 120 | { | ||
| 121 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->blpop(...\func_get_args()); | ||
| 122 | } | ||
| 123 | |||
| 124 | public function brpop($key, $timeout_or_key, ...$extra_args) | ||
| 125 | { | ||
| 126 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->brpop(...\func_get_args()); | ||
| 127 | } | ||
| 128 | |||
| 129 | public function brpoplpush($src, $dst, $timeout) | ||
| 130 | { | ||
| 131 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->brpoplpush(...\func_get_args()); | ||
| 132 | } | ||
| 133 | |||
| 134 | public function clearlasterror() | ||
| 135 | { | ||
| 136 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->clearlasterror(...\func_get_args()); | ||
| 137 | } | ||
| 138 | |||
| 139 | public function bzpopmax($key, $timeout_or_key, ...$extra_args) | ||
| 140 | { | ||
| 141 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bzpopmax(...\func_get_args()); | ||
| 142 | } | ||
| 143 | |||
| 144 | public function bzpopmin($key, $timeout_or_key, ...$extra_args) | ||
| 145 | { | ||
| 146 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->bzpopmin(...\func_get_args()); | ||
| 147 | } | ||
| 148 | |||
| 149 | public function client($key_or_address, $arg = null, ...$other_args) | ||
| 150 | { | ||
| 151 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->client(...\func_get_args()); | ||
| 152 | } | ||
| 153 | |||
| 154 | public function close() | ||
| 155 | { | ||
| 156 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->close(...\func_get_args()); | ||
| 157 | } | ||
| 158 | |||
| 159 | public function cluster($key_or_address, $arg = null, ...$other_args) | ||
| 160 | { | ||
| 161 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cluster(...\func_get_args()); | ||
| 162 | } | ||
| 163 | |||
| 164 | public function command(...$args) | ||
| 165 | { | ||
| 166 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->command(...\func_get_args()); | ||
| 167 | } | ||
| 168 | |||
| 169 | public function config($key_or_address, $arg = null, ...$other_args) | ||
| 170 | { | ||
| 171 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->config(...\func_get_args()); | ||
| 172 | } | ||
| 173 | |||
| 174 | public function dbsize($key_or_address) | ||
| 175 | { | ||
| 176 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->dbsize(...\func_get_args()); | ||
| 177 | } | ||
| 178 | |||
| 179 | public function decr($key) | ||
| 180 | { | ||
| 181 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->decr(...\func_get_args()); | ||
| 182 | } | ||
| 183 | |||
| 184 | public function decrby($key, $value) | ||
| 185 | { | ||
| 186 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->decrby(...\func_get_args()); | ||
| 187 | } | ||
| 188 | |||
| 189 | public function del($key, ...$other_keys) | ||
| 190 | { | ||
| 191 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->del(...\func_get_args()); | ||
| 192 | } | ||
| 193 | |||
| 194 | public function discard() | ||
| 195 | { | ||
| 196 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->discard(...\func_get_args()); | ||
| 197 | } | ||
| 198 | |||
| 199 | public function dump($key) | ||
| 200 | { | ||
| 201 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->dump(...\func_get_args()); | ||
| 202 | } | ||
| 203 | |||
| 204 | public function echo($msg) | ||
| 205 | { | ||
| 206 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->echo(...\func_get_args()); | ||
| 207 | } | ||
| 208 | |||
| 209 | public function eval($script, $args = null, $num_keys = null) | ||
| 210 | { | ||
| 211 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->eval(...\func_get_args()); | ||
| 212 | } | ||
| 213 | |||
| 214 | public function evalsha($script_sha, $args = null, $num_keys = null) | ||
| 215 | { | ||
| 216 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->evalsha(...\func_get_args()); | ||
| 217 | } | ||
| 218 | |||
| 219 | public function exec() | ||
| 220 | { | ||
| 221 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->exec(...\func_get_args()); | ||
| 222 | } | ||
| 223 | |||
| 224 | public function exists($key) | ||
| 225 | { | ||
| 226 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->exists(...\func_get_args()); | ||
| 227 | } | ||
| 228 | |||
| 229 | public function expire($key, $timeout) | ||
| 230 | { | ||
| 231 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->expire(...\func_get_args()); | ||
| 232 | } | ||
| 233 | |||
| 234 | public function expireat($key, $timestamp) | ||
| 235 | { | ||
| 236 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->expireat(...\func_get_args()); | ||
| 237 | } | ||
| 238 | |||
| 239 | public function flushall($key_or_address, $async = null) | ||
| 240 | { | ||
| 241 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->flushall(...\func_get_args()); | ||
| 242 | } | ||
| 243 | |||
| 244 | public function flushdb($key_or_address, $async = null) | ||
| 245 | { | ||
| 246 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->flushdb(...\func_get_args()); | ||
| 247 | } | ||
| 248 | |||
| 249 | public function geoadd($key, $lng, $lat, $member, ...$other_triples) | ||
| 250 | { | ||
| 251 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->geoadd(...\func_get_args()); | ||
| 252 | } | ||
| 253 | |||
| 254 | public function geodist($key, $src, $dst, $unit = null) | ||
| 255 | { | ||
| 256 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->geodist(...\func_get_args()); | ||
| 257 | } | ||
| 258 | |||
| 259 | public function geohash($key, $member, ...$other_members) | ||
| 260 | { | ||
| 261 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->geohash(...\func_get_args()); | ||
| 262 | } | ||
| 263 | |||
| 264 | public function geopos($key, $member, ...$other_members) | ||
| 265 | { | ||
| 266 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->geopos(...\func_get_args()); | ||
| 267 | } | ||
| 268 | |||
| 269 | public function georadius($key, $lng, $lan, $radius, $unit, $opts = null) | ||
| 270 | { | ||
| 271 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->georadius(...\func_get_args()); | ||
| 272 | } | ||
| 273 | |||
| 274 | public function georadius_ro($key, $lng, $lan, $radius, $unit, $opts = null) | ||
| 275 | { | ||
| 276 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->georadius_ro(...\func_get_args()); | ||
| 277 | } | ||
| 278 | |||
| 279 | public function georadiusbymember($key, $member, $radius, $unit, $opts = null) | ||
| 280 | { | ||
| 281 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->georadiusbymember(...\func_get_args()); | ||
| 282 | } | ||
| 283 | |||
| 284 | public function georadiusbymember_ro($key, $member, $radius, $unit, $opts = null) | ||
| 285 | { | ||
| 286 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->georadiusbymember_ro(...\func_get_args()); | ||
| 287 | } | ||
| 288 | |||
| 289 | public function get($key) | ||
| 290 | { | ||
| 291 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->get(...\func_get_args()); | ||
| 292 | } | ||
| 293 | |||
| 294 | public function getbit($key, $offset) | ||
| 295 | { | ||
| 296 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getbit(...\func_get_args()); | ||
| 297 | } | ||
| 298 | |||
| 299 | public function getlasterror() | ||
| 300 | { | ||
| 301 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getlasterror(...\func_get_args()); | ||
| 302 | } | ||
| 303 | |||
| 304 | public function getmode() | ||
| 305 | { | ||
| 306 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getmode(...\func_get_args()); | ||
| 307 | } | ||
| 308 | |||
| 309 | public function getoption($option) | ||
| 310 | { | ||
| 311 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getoption(...\func_get_args()); | ||
| 312 | } | ||
| 313 | |||
| 314 | public function getrange($key, $start, $end) | ||
| 315 | { | ||
| 316 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getrange(...\func_get_args()); | ||
| 317 | } | ||
| 318 | |||
| 319 | public function getset($key, $value) | ||
| 320 | { | ||
| 321 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->getset(...\func_get_args()); | ||
| 322 | } | ||
| 323 | |||
| 324 | public function hdel($key, $member, ...$other_members) | ||
| 325 | { | ||
| 326 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hdel(...\func_get_args()); | ||
| 327 | } | ||
| 328 | |||
| 329 | public function hexists($key, $member) | ||
| 330 | { | ||
| 331 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hexists(...\func_get_args()); | ||
| 332 | } | ||
| 333 | |||
| 334 | public function hget($key, $member) | ||
| 335 | { | ||
| 336 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hget(...\func_get_args()); | ||
| 337 | } | ||
| 338 | |||
| 339 | public function hgetall($key) | ||
| 340 | { | ||
| 341 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hgetall(...\func_get_args()); | ||
| 342 | } | ||
| 343 | |||
| 344 | public function hincrby($key, $member, $value) | ||
| 345 | { | ||
| 346 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hincrby(...\func_get_args()); | ||
| 347 | } | ||
| 348 | |||
| 349 | public function hincrbyfloat($key, $member, $value) | ||
| 350 | { | ||
| 351 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hincrbyfloat(...\func_get_args()); | ||
| 352 | } | ||
| 353 | |||
| 354 | public function hkeys($key) | ||
| 355 | { | ||
| 356 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hkeys(...\func_get_args()); | ||
| 357 | } | ||
| 358 | |||
| 359 | public function hlen($key) | ||
| 360 | { | ||
| 361 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hlen(...\func_get_args()); | ||
| 362 | } | ||
| 363 | |||
| 364 | public function hmget($key, $keys) | ||
| 365 | { | ||
| 366 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hmget(...\func_get_args()); | ||
| 367 | } | ||
| 368 | |||
| 369 | public function hmset($key, $pairs) | ||
| 370 | { | ||
| 371 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hmset(...\func_get_args()); | ||
| 372 | } | ||
| 373 | |||
| 374 | public function hscan($str_key, &$i_iterator, $str_pattern = null, $i_count = null) | ||
| 375 | { | ||
| 376 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hscan($str_key, $i_iterator, ...\array_slice(\func_get_args(), 2)); | ||
| 377 | } | ||
| 378 | |||
| 379 | public function hset($key, $member, $value) | ||
| 380 | { | ||
| 381 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hset(...\func_get_args()); | ||
| 382 | } | ||
| 383 | |||
| 384 | public function hsetnx($key, $member, $value) | ||
| 385 | { | ||
| 386 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hsetnx(...\func_get_args()); | ||
| 387 | } | ||
| 388 | |||
| 389 | public function hstrlen($key, $member) | ||
| 390 | { | ||
| 391 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hstrlen(...\func_get_args()); | ||
| 392 | } | ||
| 393 | |||
| 394 | public function hvals($key) | ||
| 395 | { | ||
| 396 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hvals(...\func_get_args()); | ||
| 397 | } | ||
| 398 | |||
| 399 | public function incr($key) | ||
| 400 | { | ||
| 401 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->incr(...\func_get_args()); | ||
| 402 | } | ||
| 403 | |||
| 404 | public function incrby($key, $value) | ||
| 405 | { | ||
| 406 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->incrby(...\func_get_args()); | ||
| 407 | } | ||
| 408 | |||
| 409 | public function incrbyfloat($key, $value) | ||
| 410 | { | ||
| 411 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->incrbyfloat(...\func_get_args()); | ||
| 412 | } | ||
| 413 | |||
| 414 | public function info($key_or_address, $option = null) | ||
| 415 | { | ||
| 416 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->info(...\func_get_args()); | ||
| 417 | } | ||
| 418 | |||
| 419 | public function keys($pattern) | ||
| 420 | { | ||
| 421 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->keys(...\func_get_args()); | ||
| 422 | } | ||
| 423 | |||
| 424 | public function lastsave($key_or_address) | ||
| 425 | { | ||
| 426 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lastsave(...\func_get_args()); | ||
| 427 | } | ||
| 428 | |||
| 429 | public function lget($key, $index) | ||
| 430 | { | ||
| 431 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lget(...\func_get_args()); | ||
| 432 | } | ||
| 433 | |||
| 434 | public function lindex($key, $index) | ||
| 435 | { | ||
| 436 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lindex(...\func_get_args()); | ||
| 437 | } | ||
| 438 | |||
| 439 | public function linsert($key, $position, $pivot, $value) | ||
| 440 | { | ||
| 441 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->linsert(...\func_get_args()); | ||
| 442 | } | ||
| 443 | |||
| 444 | public function llen($key) | ||
| 445 | { | ||
| 446 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->llen(...\func_get_args()); | ||
| 447 | } | ||
| 448 | |||
| 449 | public function lpop($key) | ||
| 450 | { | ||
| 451 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lpop(...\func_get_args()); | ||
| 452 | } | ||
| 453 | |||
| 454 | public function lpush($key, $value) | ||
| 455 | { | ||
| 456 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lpush(...\func_get_args()); | ||
| 457 | } | ||
| 458 | |||
| 459 | public function lpushx($key, $value) | ||
| 460 | { | ||
| 461 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lpushx(...\func_get_args()); | ||
| 462 | } | ||
| 463 | |||
| 464 | public function lrange($key, $start, $end) | ||
| 465 | { | ||
| 466 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lrange(...\func_get_args()); | ||
| 467 | } | ||
| 468 | |||
| 469 | public function lrem($key, $value) | ||
| 470 | { | ||
| 471 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lrem(...\func_get_args()); | ||
| 472 | } | ||
| 473 | |||
| 474 | public function lset($key, $index, $value) | ||
| 475 | { | ||
| 476 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->lset(...\func_get_args()); | ||
| 477 | } | ||
| 478 | |||
| 479 | public function ltrim($key, $start, $stop) | ||
| 480 | { | ||
| 481 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->ltrim(...\func_get_args()); | ||
| 482 | } | ||
| 483 | |||
| 484 | public function mget($keys) | ||
| 485 | { | ||
| 486 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->mget(...\func_get_args()); | ||
| 487 | } | ||
| 488 | |||
| 489 | public function mset($pairs) | ||
| 490 | { | ||
| 491 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->mset(...\func_get_args()); | ||
| 492 | } | ||
| 493 | |||
| 494 | public function msetnx($pairs) | ||
| 495 | { | ||
| 496 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->msetnx(...\func_get_args()); | ||
| 497 | } | ||
| 498 | |||
| 499 | public function multi() | ||
| 500 | { | ||
| 501 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->multi(...\func_get_args()); | ||
| 502 | } | ||
| 503 | |||
| 504 | public function object($field, $key) | ||
| 505 | { | ||
| 506 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->object(...\func_get_args()); | ||
| 507 | } | ||
| 508 | |||
| 509 | public function persist($key) | ||
| 510 | { | ||
| 511 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->persist(...\func_get_args()); | ||
| 512 | } | ||
| 513 | |||
| 514 | public function pexpire($key, $timestamp) | ||
| 515 | { | ||
| 516 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pexpire(...\func_get_args()); | ||
| 517 | } | ||
| 518 | |||
| 519 | public function pexpireat($key, $timestamp) | ||
| 520 | { | ||
| 521 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pexpireat(...\func_get_args()); | ||
| 522 | } | ||
| 523 | |||
| 524 | public function pfadd($key, $elements) | ||
| 525 | { | ||
| 526 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pfadd(...\func_get_args()); | ||
| 527 | } | ||
| 528 | |||
| 529 | public function pfcount($key) | ||
| 530 | { | ||
| 531 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pfcount(...\func_get_args()); | ||
| 532 | } | ||
| 533 | |||
| 534 | public function pfmerge($dstkey, $keys) | ||
| 535 | { | ||
| 536 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pfmerge(...\func_get_args()); | ||
| 537 | } | ||
| 538 | |||
| 539 | public function ping($key_or_address) | ||
| 540 | { | ||
| 541 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->ping(...\func_get_args()); | ||
| 542 | } | ||
| 543 | |||
| 544 | public function psetex($key, $expire, $value) | ||
| 545 | { | ||
| 546 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->psetex(...\func_get_args()); | ||
| 547 | } | ||
| 548 | |||
| 549 | public function psubscribe($patterns, $callback) | ||
| 550 | { | ||
| 551 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->psubscribe(...\func_get_args()); | ||
| 552 | } | ||
| 553 | |||
| 554 | public function pttl($key) | ||
| 555 | { | ||
| 556 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pttl(...\func_get_args()); | ||
| 557 | } | ||
| 558 | |||
| 559 | public function publish($channel, $message) | ||
| 560 | { | ||
| 561 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->publish(...\func_get_args()); | ||
| 562 | } | ||
| 563 | |||
| 564 | public function pubsub($key_or_address, $arg = null, ...$other_args) | ||
| 565 | { | ||
| 566 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pubsub(...\func_get_args()); | ||
| 567 | } | ||
| 568 | |||
| 569 | public function punsubscribe($pattern, ...$other_patterns) | ||
| 570 | { | ||
| 571 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->punsubscribe(...\func_get_args()); | ||
| 572 | } | ||
| 573 | |||
| 574 | public function randomkey($key_or_address) | ||
| 575 | { | ||
| 576 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->randomkey(...\func_get_args()); | ||
| 577 | } | ||
| 578 | |||
| 579 | public function rawcommand($cmd, ...$args) | ||
| 580 | { | ||
| 581 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rawcommand(...\func_get_args()); | ||
| 582 | } | ||
| 583 | |||
| 584 | public function rename($key, $newkey) | ||
| 585 | { | ||
| 586 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rename(...\func_get_args()); | ||
| 587 | } | ||
| 588 | |||
| 589 | public function renamenx($key, $newkey) | ||
| 590 | { | ||
| 591 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->renamenx(...\func_get_args()); | ||
| 592 | } | ||
| 593 | |||
| 594 | public function restore($ttl, $key, $value) | ||
| 595 | { | ||
| 596 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->restore(...\func_get_args()); | ||
| 597 | } | ||
| 598 | |||
| 599 | public function role() | ||
| 600 | { | ||
| 601 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->role(...\func_get_args()); | ||
| 602 | } | ||
| 603 | |||
| 604 | public function rpop($key) | ||
| 605 | { | ||
| 606 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rpop(...\func_get_args()); | ||
| 607 | } | ||
| 608 | |||
| 609 | public function rpoplpush($src, $dst) | ||
| 610 | { | ||
| 611 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rpoplpush(...\func_get_args()); | ||
| 612 | } | ||
| 613 | |||
| 614 | public function rpush($key, $value) | ||
| 615 | { | ||
| 616 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rpush(...\func_get_args()); | ||
| 617 | } | ||
| 618 | |||
| 619 | public function rpushx($key, $value) | ||
| 620 | { | ||
| 621 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->rpushx(...\func_get_args()); | ||
| 622 | } | ||
| 623 | |||
| 624 | public function sadd($key, $value) | ||
| 625 | { | ||
| 626 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sadd(...\func_get_args()); | ||
| 627 | } | ||
| 628 | |||
| 629 | public function saddarray($key, $options) | ||
| 630 | { | ||
| 631 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->saddarray(...\func_get_args()); | ||
| 632 | } | ||
| 633 | |||
| 634 | public function save($key_or_address) | ||
| 635 | { | ||
| 636 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->save(...\func_get_args()); | ||
| 637 | } | ||
| 638 | |||
| 639 | public function scan(&$i_iterator, $str_node, $str_pattern = null, $i_count = null) | ||
| 640 | { | ||
| 641 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->scan($i_iterator, ...\array_slice(\func_get_args(), 1)); | ||
| 642 | } | ||
| 643 | |||
| 644 | public function scard($key) | ||
| 645 | { | ||
| 646 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->scard(...\func_get_args()); | ||
| 647 | } | ||
| 648 | |||
| 649 | public function script($key_or_address, $arg = null, ...$other_args) | ||
| 650 | { | ||
| 651 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->script(...\func_get_args()); | ||
| 652 | } | ||
| 653 | |||
| 654 | public function sdiff($key, ...$other_keys) | ||
| 655 | { | ||
| 656 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sdiff(...\func_get_args()); | ||
| 657 | } | ||
| 658 | |||
| 659 | public function sdiffstore($dst, $key, ...$other_keys) | ||
| 660 | { | ||
| 661 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sdiffstore(...\func_get_args()); | ||
| 662 | } | ||
| 663 | |||
| 664 | public function set($key, $value, $opts = null) | ||
| 665 | { | ||
| 666 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->set(...\func_get_args()); | ||
| 667 | } | ||
| 668 | |||
| 669 | public function setbit($key, $offset, $value) | ||
| 670 | { | ||
| 671 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->setbit(...\func_get_args()); | ||
| 672 | } | ||
| 673 | |||
| 674 | public function setex($key, $expire, $value) | ||
| 675 | { | ||
| 676 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->setex(...\func_get_args()); | ||
| 677 | } | ||
| 678 | |||
| 679 | public function setnx($key, $value) | ||
| 680 | { | ||
| 681 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->setnx(...\func_get_args()); | ||
| 682 | } | ||
| 683 | |||
| 684 | public function setoption($option, $value) | ||
| 685 | { | ||
| 686 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->setoption(...\func_get_args()); | ||
| 687 | } | ||
| 688 | |||
| 689 | public function setrange($key, $offset, $value) | ||
| 690 | { | ||
| 691 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->setrange(...\func_get_args()); | ||
| 692 | } | ||
| 693 | |||
| 694 | public function sinter($key, ...$other_keys) | ||
| 695 | { | ||
| 696 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sinter(...\func_get_args()); | ||
| 697 | } | ||
| 698 | |||
| 699 | public function sinterstore($dst, $key, ...$other_keys) | ||
| 700 | { | ||
| 701 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sinterstore(...\func_get_args()); | ||
| 702 | } | ||
| 703 | |||
| 704 | public function sismember($key, $value) | ||
| 705 | { | ||
| 706 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sismember(...\func_get_args()); | ||
| 707 | } | ||
| 708 | |||
| 709 | public function slowlog($key_or_address, $arg = null, ...$other_args) | ||
| 710 | { | ||
| 711 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->slowlog(...\func_get_args()); | ||
| 712 | } | ||
| 713 | |||
| 714 | public function smembers($key) | ||
| 715 | { | ||
| 716 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->smembers(...\func_get_args()); | ||
| 717 | } | ||
| 718 | |||
| 719 | public function smove($src, $dst, $value) | ||
| 720 | { | ||
| 721 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->smove(...\func_get_args()); | ||
| 722 | } | ||
| 723 | |||
| 724 | public function sort($key, $options = null) | ||
| 725 | { | ||
| 726 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sort(...\func_get_args()); | ||
| 727 | } | ||
| 728 | |||
| 729 | public function spop($key) | ||
| 730 | { | ||
| 731 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->spop(...\func_get_args()); | ||
| 732 | } | ||
| 733 | |||
| 734 | public function srandmember($key, $count = null) | ||
| 735 | { | ||
| 736 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->srandmember(...\func_get_args()); | ||
| 737 | } | ||
| 738 | |||
| 739 | public function srem($key, $value) | ||
| 740 | { | ||
| 741 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->srem(...\func_get_args()); | ||
| 742 | } | ||
| 743 | |||
| 744 | public function sscan($str_key, &$i_iterator, $str_pattern = null, $i_count = null) | ||
| 745 | { | ||
| 746 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sscan($str_key, $i_iterator, ...\array_slice(\func_get_args(), 2)); | ||
| 747 | } | ||
| 748 | |||
| 749 | public function strlen($key) | ||
| 750 | { | ||
| 751 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->strlen(...\func_get_args()); | ||
| 752 | } | ||
| 753 | |||
| 754 | public function subscribe($channels, $callback) | ||
| 755 | { | ||
| 756 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->subscribe(...\func_get_args()); | ||
| 757 | } | ||
| 758 | |||
| 759 | public function sunion($key, ...$other_keys) | ||
| 760 | { | ||
| 761 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sunion(...\func_get_args()); | ||
| 762 | } | ||
| 763 | |||
| 764 | public function sunionstore($dst, $key, ...$other_keys) | ||
| 765 | { | ||
| 766 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->sunionstore(...\func_get_args()); | ||
| 767 | } | ||
| 768 | |||
| 769 | public function time() | ||
| 770 | { | ||
| 771 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->time(...\func_get_args()); | ||
| 772 | } | ||
| 773 | |||
| 774 | public function ttl($key) | ||
| 775 | { | ||
| 776 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->ttl(...\func_get_args()); | ||
| 777 | } | ||
| 778 | |||
| 779 | public function type($key) | ||
| 780 | { | ||
| 781 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->type(...\func_get_args()); | ||
| 782 | } | ||
| 783 | |||
| 784 | public function unsubscribe($channel, ...$other_channels) | ||
| 785 | { | ||
| 786 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->unsubscribe(...\func_get_args()); | ||
| 787 | } | ||
| 788 | |||
| 789 | public function unlink($key, ...$other_keys) | ||
| 790 | { | ||
| 791 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->unlink(...\func_get_args()); | ||
| 792 | } | ||
| 793 | |||
| 794 | public function unwatch() | ||
| 795 | { | ||
| 796 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->unwatch(...\func_get_args()); | ||
| 797 | } | ||
| 798 | |||
| 799 | public function watch($key, ...$other_keys) | ||
| 800 | { | ||
| 801 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->watch(...\func_get_args()); | ||
| 802 | } | ||
| 803 | |||
| 804 | public function xack($str_key, $str_group, $arr_ids) | ||
| 805 | { | ||
| 806 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xack(...\func_get_args()); | ||
| 807 | } | ||
| 808 | |||
| 809 | public function xadd($str_key, $str_id, $arr_fields, $i_maxlen = null, $boo_approximate = null) | ||
| 810 | { | ||
| 811 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xadd(...\func_get_args()); | ||
| 812 | } | ||
| 813 | |||
| 814 | public function xclaim($str_key, $str_group, $str_consumer, $i_min_idle, $arr_ids, $arr_opts = null) | ||
| 815 | { | ||
| 816 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xclaim(...\func_get_args()); | ||
| 817 | } | ||
| 818 | |||
| 819 | public function xdel($str_key, $arr_ids) | ||
| 820 | { | ||
| 821 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xdel(...\func_get_args()); | ||
| 822 | } | ||
| 823 | |||
| 824 | public function xgroup($str_operation, $str_key = null, $str_arg1 = null, $str_arg2 = null, $str_arg3 = null) | ||
| 825 | { | ||
| 826 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xgroup(...\func_get_args()); | ||
| 827 | } | ||
| 828 | |||
| 829 | public function xinfo($str_cmd, $str_key = null, $str_group = null) | ||
| 830 | { | ||
| 831 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xinfo(...\func_get_args()); | ||
| 832 | } | ||
| 833 | |||
| 834 | public function xlen($key) | ||
| 835 | { | ||
| 836 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xlen(...\func_get_args()); | ||
| 837 | } | ||
| 838 | |||
| 839 | public function xpending($str_key, $str_group, $str_start = null, $str_end = null, $i_count = null, $str_consumer = null) | ||
| 840 | { | ||
| 841 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xpending(...\func_get_args()); | ||
| 842 | } | ||
| 843 | |||
| 844 | public function xrange($str_key, $str_start, $str_end, $i_count = null) | ||
| 845 | { | ||
| 846 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xrange(...\func_get_args()); | ||
| 847 | } | ||
| 848 | |||
| 849 | public function xread($arr_streams, $i_count = null, $i_block = null) | ||
| 850 | { | ||
| 851 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xread(...\func_get_args()); | ||
| 852 | } | ||
| 853 | |||
| 854 | public function xreadgroup($str_group, $str_consumer, $arr_streams, $i_count = null, $i_block = null) | ||
| 855 | { | ||
| 856 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xreadgroup(...\func_get_args()); | ||
| 857 | } | ||
| 858 | |||
| 859 | public function xrevrange($str_key, $str_start, $str_end, $i_count = null) | ||
| 860 | { | ||
| 861 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xrevrange(...\func_get_args()); | ||
| 862 | } | ||
| 863 | |||
| 864 | public function xtrim($str_key, $i_maxlen, $boo_approximate = null) | ||
| 865 | { | ||
| 866 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->xtrim(...\func_get_args()); | ||
| 867 | } | ||
| 868 | |||
| 869 | public function zadd($key, $score, $value, ...$extra_args) | ||
| 870 | { | ||
| 871 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zadd(...\func_get_args()); | ||
| 872 | } | ||
| 873 | |||
| 874 | public function zcard($key) | ||
| 875 | { | ||
| 876 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zcard(...\func_get_args()); | ||
| 877 | } | ||
| 878 | |||
| 879 | public function zcount($key, $min, $max) | ||
| 880 | { | ||
| 881 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zcount(...\func_get_args()); | ||
| 882 | } | ||
| 883 | |||
| 884 | public function zincrby($key, $value, $member) | ||
| 885 | { | ||
| 886 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zincrby(...\func_get_args()); | ||
| 887 | } | ||
| 888 | |||
| 889 | public function zinterstore($key, $keys, $weights = null, $aggregate = null) | ||
| 890 | { | ||
| 891 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zinterstore(...\func_get_args()); | ||
| 892 | } | ||
| 893 | |||
| 894 | public function zlexcount($key, $min, $max) | ||
| 895 | { | ||
| 896 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zlexcount(...\func_get_args()); | ||
| 897 | } | ||
| 898 | |||
| 899 | public function zpopmax($key) | ||
| 900 | { | ||
| 901 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zpopmax(...\func_get_args()); | ||
| 902 | } | ||
| 903 | |||
| 904 | public function zpopmin($key) | ||
| 905 | { | ||
| 906 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zpopmin(...\func_get_args()); | ||
| 907 | } | ||
| 908 | |||
| 909 | public function zrange($key, $start, $end, $scores = null) | ||
| 910 | { | ||
| 911 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrange(...\func_get_args()); | ||
| 912 | } | ||
| 913 | |||
| 914 | public function zrangebylex($key, $min, $max, $offset = null, $limit = null) | ||
| 915 | { | ||
| 916 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrangebylex(...\func_get_args()); | ||
| 917 | } | ||
| 918 | |||
| 919 | public function zrangebyscore($key, $start, $end, $options = null) | ||
| 920 | { | ||
| 921 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrangebyscore(...\func_get_args()); | ||
| 922 | } | ||
| 923 | |||
| 924 | public function zrank($key, $member) | ||
| 925 | { | ||
| 926 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrank(...\func_get_args()); | ||
| 927 | } | ||
| 928 | |||
| 929 | public function zrem($key, $member, ...$other_members) | ||
| 930 | { | ||
| 931 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrem(...\func_get_args()); | ||
| 932 | } | ||
| 933 | |||
| 934 | public function zremrangebylex($key, $min, $max) | ||
| 935 | { | ||
| 936 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zremrangebylex(...\func_get_args()); | ||
| 937 | } | ||
| 938 | |||
| 939 | public function zremrangebyrank($key, $min, $max) | ||
| 940 | { | ||
| 941 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zremrangebyrank(...\func_get_args()); | ||
| 942 | } | ||
| 943 | |||
| 944 | public function zremrangebyscore($key, $min, $max) | ||
| 945 | { | ||
| 946 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zremrangebyscore(...\func_get_args()); | ||
| 947 | } | ||
| 948 | |||
| 949 | public function zrevrange($key, $start, $end, $scores = null) | ||
| 950 | { | ||
| 951 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrevrange(...\func_get_args()); | ||
| 952 | } | ||
| 953 | |||
| 954 | public function zrevrangebylex($key, $min, $max, $offset = null, $limit = null) | ||
| 955 | { | ||
| 956 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrevrangebylex(...\func_get_args()); | ||
| 957 | } | ||
| 958 | |||
| 959 | public function zrevrangebyscore($key, $start, $end, $options = null) | ||
| 960 | { | ||
| 961 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrevrangebyscore(...\func_get_args()); | ||
| 962 | } | ||
| 963 | |||
| 964 | public function zrevrank($key, $member) | ||
| 965 | { | ||
| 966 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zrevrank(...\func_get_args()); | ||
| 967 | } | ||
| 968 | |||
| 969 | public function zscan($str_key, &$i_iterator, $str_pattern = null, $i_count = null) | ||
| 970 | { | ||
| 971 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zscan($str_key, $i_iterator, ...\array_slice(\func_get_args(), 2)); | ||
| 972 | } | ||
| 973 | |||
| 974 | public function zscore($key, $member) | ||
| 975 | { | ||
| 976 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zscore(...\func_get_args()); | ||
| 977 | } | ||
| 978 | |||
| 979 | public function zunionstore($key, $keys, $weights = null, $aggregate = null) | ||
| 980 | { | ||
| 981 | return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->zunionstore(...\func_get_args()); | ||
| 982 | } | ||
| 983 | } | ||
