return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
persist(...\
func_get_args());
} public function pexpire($key,
$timeout,
$mode = null
): bool
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
pexpire(...\
func_get_args());
} public function pexpireAt($key,
$timestamp,
$mode = null
): \Redis|bool
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
pexpireAt(...\
func_get_args());
} public function pfadd($key,
$elements): \Redis|int
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
pfadd(...\
func_get_args());
} public function pfcount($key_or_keys): \Redis|false|int
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
pfcount(...\
func_get_args());
}