RelayProxy.php 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Cache\Traits;
  11. use Symfony\Component\Cache\Traits\Relay\BgsaveTrait;
  12. use Symfony\Component\Cache\Traits\Relay\CopyTrait;
  13. use Symfony\Component\Cache\Traits\Relay\FtTrait;
  14. use Symfony\Component\Cache\Traits\Relay\GeosearchTrait;
  15. use Symfony\Component\Cache\Traits\Relay\GetrangeTrait;
  16. use Symfony\Component\Cache\Traits\Relay\GetWithMetaTrait;
  17. use Symfony\Component\Cache\Traits\Relay\HsetTrait;
  18. use Symfony\Component\Cache\Traits\Relay\IsTrackedTrait;
  19. use Symfony\Component\Cache\Traits\Relay\MoveTrait;
  20. use Symfony\Component\Cache\Traits\Relay\NullableReturnTrait;
  21. use Symfony\Component\Cache\Traits\Relay\PfcountTrait;
  22. use Symfony\Component\Cache\Traits\Relay\Relay11Trait;
  23. use Symfony\Component\Cache\Traits\Relay\Relay121Trait;
  24. use Symfony\Component\Cache\Traits\Relay\Relay12Trait;
  25. use Symfony\Component\Cache\Traits\Relay\Relay20Trait;
  26. use Symfony\Component\Cache\Traits\Relay\SwapdbTrait;
  27. use Symfony\Component\VarExporter\LazyObjectInterface;
  28. use Symfony\Contracts\Service\ResetInterface;
  29. // Help opcache.preload discover always-needed symbols
  30. class_exists(\Symfony\Component\VarExporter\Internal\Hydrator::class);
  31. class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectRegistry::class);
  32. class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectState::class);
  33. /**
  34. * @internal
  35. */
  36. class RelayProxy extends \Relay\Relay implements ResetInterface, LazyObjectInterface
  37. {
  38. use BgsaveTrait;
  39. use CopyTrait;
  40. use FtTrait;
  41. use GeosearchTrait;
  42. use GetrangeTrait;
  43. use GetWithMetaTrait;
  44. use HsetTrait;
  45. use IsTrackedTrait;
  46. use MoveTrait;
  47. use NullableReturnTrait;
  48. use PfcountTrait;
  49. use RedisProxyTrait {
  50. resetLazyObject as reset;
  51. }
  52. use RelayProxyTrait;
  53. use Relay11Trait;
  54. use Relay12Trait;
  55. use Relay121Trait;
  56. use Relay20Trait;
  57. use SwapdbTrait;
  58. public function __construct($host = null, $port = 6379, $connect_timeout = 0.0, $command_timeout = 0.0, #[\SensitiveParameter] $context = [], $database = 0)
  59. {
  60. $this->initializeLazyObject()->__construct(...\func_get_args());
  61. }
  62. public function connect($host, $port = 6379, $timeout = 0.0, $persistent_id = null, $retry_interval = 0, $read_timeout = 0.0, #[\SensitiveParameter] $context = [], $database = 0): bool
  63. {
  64. return $this->initializeLazyObject()->connect(...\func_get_args());
  65. }
  66. public function pconnect($host, $port = 6379, $timeout = 0.0, $persistent_id = null, $retry_interval = 0, $read_timeout = 0.0, #[\SensitiveParameter] $context = [], $database = 0): bool
  67. {
  68. return $this->initializeLazyObject()->pconnect(...\func_get_args());
  69. }
  70. public function close(): bool
  71. {
  72. return $this->initializeLazyObject()->close(...\func_get_args());
  73. }
  74. public function pclose(): bool
  75. {
  76. return $this->initializeLazyObject()->pclose(...\func_get_args());
  77. }
  78. public function listen($callback): bool
  79. {
  80. return $this->initializeLazyObject()->listen(...\func_get_args());
  81. }
  82. public function onFlushed($callback): bool
  83. {
  84. return $this->initializeLazyObject()->onFlushed(...\func_get_args());
  85. }
  86. public function onInvalidated($callback, $pattern = null): bool
  87. {
  88. return $this->initializeLazyObject()->onInvalidated(...\func_get_args());
  89. }
  90. public function dispatchEvents(): false|int
  91. {
  92. return $this->initializeLazyObject()->dispatchEvents(...\func_get_args());
  93. }
  94. public function getOption($option): mixed
  95. {
  96. return $this->initializeLazyObject()->getOption(...\func_get_args());
  97. }
  98. public function option($option, $value = null): mixed
  99. {
  100. return $this->initializeLazyObject()->option(...\func_get_args());
  101. }
  102. public function setOption($option, $value): bool
  103. {
  104. return $this->initializeLazyObject()->setOption(...\func_get_args());
  105. }
  106. public function addIgnorePatterns(...$pattern): int
  107. {
  108. return $this->initializeLazyObject()->addIgnorePatterns(...\func_get_args());
  109. }
  110. public function addAllowPatterns(...$pattern): int
  111. {
  112. return $this->initializeLazyObject()->addAllowPatterns(...\func_get_args());
  113. }
  114. public function getTimeout(): false|float
  115. {
  116. return $this->initializeLazyObject()->getTimeout(...\func_get_args());
  117. }
  118. public function timeout(): false|float
  119. {
  120. return $this->initializeLazyObject()->timeout(...\func_get_args());
  121. }
  122. public function getReadTimeout(): false|float
  123. {
  124. return $this->initializeLazyObject()->getReadTimeout(...\func_get_args());
  125. }
  126. public function readTimeout(): false|float
  127. {
  128. return $this->initializeLazyObject()->readTimeout(...\func_get_args());
  129. }
  130. public function getBytes(): array
  131. {
  132. return $this->initializeLazyObject()->getBytes(...\func_get_args());
  133. }
  134. public function bytes(): array
  135. {
  136. return $this->initializeLazyObject()->bytes(...\func_get_args());
  137. }
  138. public function getHost(): false|string
  139. {
  140. return $this->initializeLazyObject()->getHost(...\func_get_args());
  141. }
  142. public function isConnected(): bool
  143. {
  144. return $this->initializeLazyObject()->isConnected(...\func_get_args());
  145. }
  146. public function getPort(): false|int
  147. {
  148. return $this->initializeLazyObject()->getPort(...\func_get_args());
  149. }
  150. public function getAuth(): mixed
  151. {
  152. return $this->initializeLazyObject()->getAuth(...\func_get_args());
  153. }
  154. public function getDbNum(): mixed
  155. {
  156. return $this->initializeLazyObject()->getDbNum(...\func_get_args());
  157. }
  158. public function _serialize($value): mixed
  159. {
  160. return $this->initializeLazyObject()->_serialize(...\func_get_args());
  161. }
  162. public function _unserialize($value): mixed
  163. {
  164. return $this->initializeLazyObject()->_unserialize(...\func_get_args());
  165. }
  166. public function _compress($value): string
  167. {
  168. return $this->initializeLazyObject()->_compress(...\func_get_args());
  169. }
  170. public function _uncompress($value): string
  171. {
  172. return $this->initializeLazyObject()->_uncompress(...\func_get_args());
  173. }
  174. public function _pack($value): string
  175. {
  176. return $this->initializeLazyObject()->_pack(...\func_get_args());
  177. }
  178. public function _unpack($value): mixed
  179. {
  180. return $this->initializeLazyObject()->_unpack(...\func_get_args());
  181. }
  182. public function _prefix($value): string
  183. {
  184. return $this->initializeLazyObject()->_prefix(...\func_get_args());
  185. }
  186. public function getLastError(): ?string
  187. {
  188. return $this->initializeLazyObject()->getLastError(...\func_get_args());
  189. }
  190. public function clearLastError(): bool
  191. {
  192. return $this->initializeLazyObject()->clearLastError(...\func_get_args());
  193. }
  194. public function endpointId(): false|string
  195. {
  196. return $this->initializeLazyObject()->endpointId(...\func_get_args());
  197. }
  198. public function getPersistentID(): false|string
  199. {
  200. return $this->initializeLazyObject()->getPersistentID(...\func_get_args());
  201. }
  202. public function socketId(): false|string
  203. {
  204. return $this->initializeLazyObject()->socketId(...\func_get_args());
  205. }
  206. public function rawCommand($cmd, ...$args): mixed
  207. {
  208. return $this->initializeLazyObject()->rawCommand(...\func_get_args());
  209. }
  210. public function auth(#[\SensitiveParameter] $auth): bool
  211. {
  212. return $this->initializeLazyObject()->auth(...\func_get_args());
  213. }
  214. public function info(...$sections): \Relay\Relay|array|false
  215. {
  216. return $this->initializeLazyObject()->info(...\func_get_args());
  217. }
  218. public function flushdb($sync = null): \Relay\Relay|bool
  219. {
  220. return $this->initializeLazyObject()->flushdb(...\func_get_args());
  221. }
  222. public function flushall($sync = null): \Relay\Relay|bool
  223. {
  224. return $this->initializeLazyObject()->flushall(...\func_get_args());
  225. }
  226. public function fcall($name, $keys = [], $argv = [], $handler = null): mixed
  227. {
  228. return $this->initializeLazyObject()->fcall(...\func_get_args());
  229. }
  230. public function fcall_ro($name, $keys = [], $argv = [], $handler = null): mixed
  231. {
  232. return $this->initializeLazyObject()->fcall_ro(...\func_get_args());
  233. }
  234. public function function($op, ...$args): mixed
  235. {
  236. return $this->initializeLazyObject()->function(...\func_get_args());
  237. }
  238. public function dbsize(): \Relay\Relay|false|int
  239. {
  240. return $this->initializeLazyObject()->dbsize(...\func_get_args());
  241. }
  242. public function replicaof($host = null, $port = 0): \Relay\Relay|bool
  243. {
  244. return $this->initializeLazyObject()->replicaof(...\func_get_args());
  245. }
  246. public function waitaof($numlocal, $numremote, $timeout): \Relay\Relay|array|false
  247. {
  248. return $this->initializeLazyObject()->waitaof(...\func_get_args());
  249. }
  250. public function restore($key, $ttl, $value, $options = null): \Relay\Relay|bool
  251. {
  252. return $this->initializeLazyObject()->restore(...\func_get_args());
  253. }
  254. public function migrate($host, $port, $key, $dstdb, $timeout, $copy = false, $replace = false, #[\SensitiveParameter] $credentials = null): \Relay\Relay|bool
  255. {
  256. return $this->initializeLazyObject()->migrate(...\func_get_args());
  257. }
  258. public function echo($arg): \Relay\Relay|bool|string
  259. {
  260. return $this->initializeLazyObject()->echo(...\func_get_args());
  261. }
  262. public function ping($arg = null): \Relay\Relay|bool|string
  263. {
  264. return $this->initializeLazyObject()->ping(...\func_get_args());
  265. }
  266. public function idleTime(): \Relay\Relay|false|int
  267. {
  268. return $this->initializeLazyObject()->idleTime(...\func_get_args());
  269. }
  270. public function randomkey(): \Relay\Relay|bool|null|string
  271. {
  272. return $this->initializeLazyObject()->randomkey(...\func_get_args());
  273. }
  274. public function time(): \Relay\Relay|array|false
  275. {
  276. return $this->initializeLazyObject()->time(...\func_get_args());
  277. }
  278. public function bgrewriteaof(): \Relay\Relay|bool
  279. {
  280. return $this->initializeLazyObject()->bgrewriteaof(...\func_get_args());
  281. }
  282. public function lastsave(): \Relay\Relay|false|int
  283. {
  284. return $this->initializeLazyObject()->lastsave(...\func_get_args());
  285. }
  286. public function lcs($key1, $key2, $options = null): mixed
  287. {
  288. return $this->initializeLazyObject()->lcs(...\func_get_args());
  289. }
  290. public function save(): \Relay\Relay|bool
  291. {
  292. return $this->initializeLazyObject()->save(...\func_get_args());
  293. }
  294. public function role(): \Relay\Relay|array|false
  295. {
  296. return $this->initializeLazyObject()->role(...\func_get_args());
  297. }
  298. public function ttl($key): \Relay\Relay|false|int
  299. {
  300. return $this->initializeLazyObject()->ttl(...\func_get_args());
  301. }
  302. public function pttl($key): \Relay\Relay|false|int
  303. {
  304. return $this->initializeLazyObject()->pttl(...\func_get_args());
  305. }
  306. public function exists(...$keys): \Relay\Relay|bool|int
  307. {
  308. return $this->initializeLazyObject()->exists(...\func_get_args());
  309. }
  310. public function eval($script, $args = [], $num_keys = 0): mixed
  311. {
  312. return $this->initializeLazyObject()->eval(...\func_get_args());
  313. }
  314. public function eval_ro($script, $args = [], $num_keys = 0): mixed
  315. {
  316. return $this->initializeLazyObject()->eval_ro(...\func_get_args());
  317. }
  318. public function evalsha($sha, $args = [], $num_keys = 0): mixed
  319. {
  320. return $this->initializeLazyObject()->evalsha(...\func_get_args());
  321. }
  322. public function evalsha_ro($sha, $args = [], $num_keys = 0): mixed
  323. {
  324. return $this->initializeLazyObject()->evalsha_ro(...\func_get_args());
  325. }
  326. public function client($operation, ...$args): mixed
  327. {
  328. return $this->initializeLazyObject()->client(...\func_get_args());
  329. }
  330. public function geoadd($key, $lng, $lat, $member, ...$other_triples_and_options): \Relay\Relay|false|int
  331. {
  332. return $this->initializeLazyObject()->geoadd(...\func_get_args());
  333. }
  334. public function geohash($key, $member, ...$other_members): \Relay\Relay|array|false
  335. {
  336. return $this->initializeLazyObject()->geohash(...\func_get_args());
  337. }
  338. public function georadius($key, $lng, $lat, $radius, $unit, $options = []): mixed
  339. {
  340. return $this->initializeLazyObject()->georadius(...\func_get_args());
  341. }
  342. public function georadiusbymember($key, $member, $radius, $unit, $options = []): mixed
  343. {
  344. return $this->initializeLazyObject()->georadiusbymember(...\func_get_args());
  345. }
  346. public function georadiusbymember_ro($key, $member, $radius, $unit, $options = []): mixed
  347. {
  348. return $this->initializeLazyObject()->georadiusbymember_ro(...\func_get_args());
  349. }
  350. public function georadius_ro($key, $lng, $lat, $radius, $unit, $options = []): mixed
  351. {
  352. return $this->initializeLazyObject()->georadius_ro(...\func_get_args());
  353. }
  354. public function geosearchstore($dst, $src, $position, $shape, $unit, $options = []): \Relay\Relay|false|int
  355. {
  356. return $this->initializeLazyObject()->geosearchstore(...\func_get_args());
  357. }
  358. public function get($key): mixed
  359. {
  360. return $this->initializeLazyObject()->get(...\func_get_args());
  361. }
  362. public function getset($key, $value): mixed
  363. {
  364. return $this->initializeLazyObject()->getset(...\func_get_args());
  365. }
  366. public function setrange($key, $start, $value): \Relay\Relay|false|int
  367. {
  368. return $this->initializeLazyObject()->setrange(...\func_get_args());
  369. }
  370. public function getbit($key, $pos): \Relay\Relay|false|int
  371. {
  372. return $this->initializeLazyObject()->getbit(...\func_get_args());
  373. }
  374. public function bitcount($key, $start = 0, $end = -1, $by_bit = false): \Relay\Relay|false|int
  375. {
  376. return $this->initializeLazyObject()->bitcount(...\func_get_args());
  377. }
  378. public function bitfield($key, ...$args): \Relay\Relay|array|false
  379. {
  380. return $this->initializeLazyObject()->bitfield(...\func_get_args());
  381. }
  382. public function config($operation, $key = null, $value = null): \Relay\Relay|array|bool
  383. {
  384. return $this->initializeLazyObject()->config(...\func_get_args());
  385. }
  386. public function command(...$args): \Relay\Relay|array|false|int
  387. {
  388. return $this->initializeLazyObject()->command(...\func_get_args());
  389. }
  390. public function bitop($operation, $dstkey, $srckey, ...$other_keys): \Relay\Relay|false|int
  391. {
  392. return $this->initializeLazyObject()->bitop(...\func_get_args());
  393. }
  394. public function bitpos($key, $bit, $start = null, $end = null, $bybit = false): \Relay\Relay|false|int
  395. {
  396. return $this->initializeLazyObject()->bitpos(...\func_get_args());
  397. }
  398. public function setbit($key, $pos, $val): \Relay\Relay|false|int
  399. {
  400. return $this->initializeLazyObject()->setbit(...\func_get_args());
  401. }
  402. public function acl($cmd, ...$args): mixed
  403. {
  404. return $this->initializeLazyObject()->acl(...\func_get_args());
  405. }
  406. public function append($key, $value): \Relay\Relay|false|int
  407. {
  408. return $this->initializeLazyObject()->append(...\func_get_args());
  409. }
  410. public function set($key, $value, $options = null): mixed
  411. {
  412. return $this->initializeLazyObject()->set(...\func_get_args());
  413. }
  414. public function getex($key, $options = null): mixed
  415. {
  416. return $this->initializeLazyObject()->getex(...\func_get_args());
  417. }
  418. public function getdel($key): mixed
  419. {
  420. return $this->initializeLazyObject()->getdel(...\func_get_args());
  421. }
  422. public function setex($key, $seconds, $value): \Relay\Relay|bool
  423. {
  424. return $this->initializeLazyObject()->setex(...\func_get_args());
  425. }
  426. public function pfadd($key, $elements): \Relay\Relay|false|int
  427. {
  428. return $this->initializeLazyObject()->pfadd(...\func_get_args());
  429. }
  430. public function pfmerge($dst, $srckeys): \Relay\Relay|bool
  431. {
  432. return $this->initializeLazyObject()->pfmerge(...\func_get_args());
  433. }
  434. public function psetex($key, $milliseconds, $value): \Relay\Relay|bool
  435. {
  436. return $this->initializeLazyObject()->psetex(...\func_get_args());
  437. }
  438. public function publish($channel, $message): \Relay\Relay|false|int
  439. {
  440. return $this->initializeLazyObject()->publish(...\func_get_args());
  441. }
  442. public function pubsub($operation, ...$args): mixed
  443. {
  444. return $this->initializeLazyObject()->pubsub(...\func_get_args());
  445. }
  446. public function spublish($channel, $message): \Relay\Relay|false|int
  447. {
  448. return $this->initializeLazyObject()->spublish(...\func_get_args());
  449. }
  450. public function setnx($key, $value): \Relay\Relay|bool
  451. {
  452. return $this->initializeLazyObject()->setnx(...\func_get_args());
  453. }
  454. public function mget($keys): \Relay\Relay|array|false
  455. {
  456. return $this->initializeLazyObject()->mget(...\func_get_args());
  457. }
  458. public function move($key, $db): \Relay\Relay|false|int
  459. {
  460. return $this->initializeLazyObject()->move(...\func_get_args());
  461. }
  462. public function mset($kvals): \Relay\Relay|bool
  463. {
  464. return $this->initializeLazyObject()->mset(...\func_get_args());
  465. }
  466. public function msetnx($kvals): \Relay\Relay|bool
  467. {
  468. return $this->initializeLazyObject()->msetnx(...\func_get_args());
  469. }
  470. public function rename($key, $newkey): \Relay\Relay|bool
  471. {
  472. return $this->initializeLazyObject()->rename(...\func_get_args());
  473. }
  474. public function renamenx($key, $newkey): \Relay\Relay|bool
  475. {
  476. return $this->initializeLazyObject()->renamenx(...\func_get_args());
  477. }
  478. public function del(...$keys): \Relay\Relay|bool|int
  479. {
  480. return $this->initializeLazyObject()->del(...\func_get_args());
  481. }
  482. public function unlink(...$keys): \Relay\Relay|false|int
  483. {
  484. return $this->initializeLazyObject()->unlink(...\func_get_args());
  485. }
  486. public function expire($key, $seconds, $mode = null): \Relay\Relay|bool
  487. {
  488. return $this->initializeLazyObject()->expire(...\func_get_args());
  489. }
  490. public function pexpire($key, $milliseconds): \Relay\Relay|bool
  491. {
  492. return $this->initializeLazyObject()->pexpire(...\func_get_args());
  493. }
  494. public function expireat($key, $timestamp): \Relay\Relay|bool
  495. {
  496. return $this->initializeLazyObject()->expireat(...\func_get_args());
  497. }
  498. public function expiretime($key): \Relay\Relay|false|int
  499. {
  500. return $this->initializeLazyObject()->expiretime(...\func_get_args());
  501. }
  502. public function pexpireat($key, $timestamp_ms): \Relay\Relay|bool
  503. {
  504. return $this->initializeLazyObject()->pexpireat(...\func_get_args());
  505. }
  506. public function pexpiretime($key): \Relay\Relay|false|int
  507. {
  508. return $this->initializeLazyObject()->pexpiretime(...\func_get_args());
  509. }
  510. public function persist($key): \Relay\Relay|bool
  511. {
  512. return $this->initializeLazyObject()->persist(...\func_get_args());
  513. }
  514. public function type($key): \Relay\Relay|bool|int|string
  515. {
  516. return $this->initializeLazyObject()->type(...\func_get_args());
  517. }
  518. public function lrange($key, $start, $stop): \Relay\Relay|array|false
  519. {
  520. return $this->initializeLazyObject()->lrange(...\func_get_args());
  521. }
  522. public function lpush($key, $mem, ...$mems): \Relay\Relay|false|int
  523. {
  524. return $this->initializeLazyObject()->lpush(...\func_get_args());
  525. }
  526. public function rpush($key, $mem, ...$mems): \Relay\Relay|false|int
  527. {
  528. return $this->initializeLazyObject()->rpush(...\func_get_args());
  529. }
  530. public function lpushx($key, $mem, ...$mems): \Relay\Relay|false|int
  531. {
  532. return $this->initializeLazyObject()->lpushx(...\func_get_args());
  533. }
  534. public function rpushx($key, $mem, ...$mems): \Relay\Relay|false|int
  535. {
  536. return $this->initializeLazyObject()->rpushx(...\func_get_args());
  537. }
  538. public function lset($key, $index, $mem): \Relay\Relay|bool
  539. {
  540. return $this->initializeLazyObject()->lset(...\func_get_args());
  541. }
  542. public function lpop($key, $count = 1): mixed
  543. {
  544. return $this->initializeLazyObject()->lpop(...\func_get_args());
  545. }
  546. public function lpos($key, $value, $options = null): \Relay\Relay|array|false|int|null
  547. {
  548. return $this->initializeLazyObject()->lpos(...\func_get_args());
  549. }
  550. public function rpop($key, $count = 1): mixed
  551. {
  552. return $this->initializeLazyObject()->rpop(...\func_get_args());
  553. }
  554. public function rpoplpush($source, $dest): mixed
  555. {
  556. return $this->initializeLazyObject()->rpoplpush(...\func_get_args());
  557. }
  558. public function brpoplpush($source, $dest, $timeout): mixed
  559. {
  560. return $this->initializeLazyObject()->brpoplpush(...\func_get_args());
  561. }
  562. public function blpop($key, $timeout_or_key, ...$extra_args): \Relay\Relay|array|false|null
  563. {
  564. return $this->initializeLazyObject()->blpop(...\func_get_args());
  565. }
  566. public function blmpop($timeout, $keys, $from, $count = 1): \Relay\Relay|array|false|null
  567. {
  568. return $this->initializeLazyObject()->blmpop(...\func_get_args());
  569. }
  570. public function bzmpop($timeout, $keys, $from, $count = 1): \Relay\Relay|array|false|null
  571. {
  572. return $this->initializeLazyObject()->bzmpop(...\func_get_args());
  573. }
  574. public function lmpop($keys, $from, $count = 1): \Relay\Relay|array|false|null
  575. {
  576. return $this->initializeLazyObject()->lmpop(...\func_get_args());
  577. }
  578. public function zmpop($keys, $from, $count = 1): \Relay\Relay|array|false|null
  579. {
  580. return $this->initializeLazyObject()->zmpop(...\func_get_args());
  581. }
  582. public function brpop($key, $timeout_or_key, ...$extra_args): \Relay\Relay|array|false|null
  583. {
  584. return $this->initializeLazyObject()->brpop(...\func_get_args());
  585. }
  586. public function bzpopmax($key, $timeout_or_key, ...$extra_args): \Relay\Relay|array|false|null
  587. {
  588. return $this->initializeLazyObject()->bzpopmax(...\func_get_args());
  589. }
  590. public function bzpopmin($key, $timeout_or_key, ...$extra_args): \Relay\Relay|array|false|null
  591. {
  592. return $this->initializeLazyObject()->bzpopmin(...\func_get_args());
  593. }
  594. public function object($op, $key): mixed
  595. {
  596. return $this->initializeLazyObject()->object(...\func_get_args());
  597. }
  598. public function geopos($key, ...$members): \Relay\Relay|array|false
  599. {
  600. return $this->initializeLazyObject()->geopos(...\func_get_args());
  601. }
  602. public function lrem($key, $mem, $count = 0): \Relay\Relay|false|int
  603. {
  604. return $this->initializeLazyObject()->lrem(...\func_get_args());
  605. }
  606. public function lindex($key, $index): mixed
  607. {
  608. return $this->initializeLazyObject()->lindex(...\func_get_args());
  609. }
  610. public function linsert($key, $op, $pivot, $element): \Relay\Relay|false|int
  611. {
  612. return $this->initializeLazyObject()->linsert(...\func_get_args());
  613. }
  614. public function ltrim($key, $start, $end): \Relay\Relay|bool
  615. {
  616. return $this->initializeLazyObject()->ltrim(...\func_get_args());
  617. }
  618. public function hget($hash, $member): mixed
  619. {
  620. return $this->initializeLazyObject()->hget(...\func_get_args());
  621. }
  622. public function hstrlen($hash, $member): \Relay\Relay|false|int
  623. {
  624. return $this->initializeLazyObject()->hstrlen(...\func_get_args());
  625. }
  626. public function hgetall($hash): \Relay\Relay|array|false
  627. {
  628. return $this->initializeLazyObject()->hgetall(...\func_get_args());
  629. }
  630. public function hkeys($hash): \Relay\Relay|array|false
  631. {
  632. return $this->initializeLazyObject()->hkeys(...\func_get_args());
  633. }
  634. public function hvals($hash): \Relay\Relay|array|false
  635. {
  636. return $this->initializeLazyObject()->hvals(...\func_get_args());
  637. }
  638. public function hmget($hash, $members): \Relay\Relay|array|false
  639. {
  640. return $this->initializeLazyObject()->hmget(...\func_get_args());
  641. }
  642. public function hmset($hash, $members): \Relay\Relay|bool
  643. {
  644. return $this->initializeLazyObject()->hmset(...\func_get_args());
  645. }
  646. public function hexists($hash, $member): \Relay\Relay|bool
  647. {
  648. return $this->initializeLazyObject()->hexists(...\func_get_args());
  649. }
  650. public function hsetnx($hash, $member, $value): \Relay\Relay|bool
  651. {
  652. return $this->initializeLazyObject()->hsetnx(...\func_get_args());
  653. }
  654. public function hdel($key, $mem, ...$mems): \Relay\Relay|false|int
  655. {
  656. return $this->initializeLazyObject()->hdel(...\func_get_args());
  657. }
  658. public function hincrby($key, $mem, $value): \Relay\Relay|false|int
  659. {
  660. return $this->initializeLazyObject()->hincrby(...\func_get_args());
  661. }
  662. public function hincrbyfloat($key, $mem, $value): \Relay\Relay|bool|float
  663. {
  664. return $this->initializeLazyObject()->hincrbyfloat(...\func_get_args());
  665. }
  666. public function incr($key, $by = 1): \Relay\Relay|false|int
  667. {
  668. return $this->initializeLazyObject()->incr(...\func_get_args());
  669. }
  670. public function decr($key, $by = 1): \Relay\Relay|false|int
  671. {
  672. return $this->initializeLazyObject()->decr(...\func_get_args());
  673. }
  674. public function incrby($key, $value): \Relay\Relay|false|int
  675. {
  676. return $this->initializeLazyObject()->incrby(...\func_get_args());
  677. }
  678. public function decrby($key, $value): \Relay\Relay|false|int
  679. {
  680. return $this->initializeLazyObject()->decrby(...\func_get_args());
  681. }
  682. public function incrbyfloat($key, $value): \Relay\Relay|false|float
  683. {
  684. return $this->initializeLazyObject()->incrbyfloat(...\func_get_args());
  685. }
  686. public function sdiff($key, ...$other_keys): \Relay\Relay|array|false
  687. {
  688. return $this->initializeLazyObject()->sdiff(...\func_get_args());
  689. }
  690. public function sdiffstore($key, ...$other_keys): \Relay\Relay|false|int
  691. {
  692. return $this->initializeLazyObject()->sdiffstore(...\func_get_args());
  693. }
  694. public function sinter($key, ...$other_keys): \Relay\Relay|array|false
  695. {
  696. return $this->initializeLazyObject()->sinter(...\func_get_args());
  697. }
  698. public function sintercard($keys, $limit = -1): \Relay\Relay|false|int
  699. {
  700. return $this->initializeLazyObject()->sintercard(...\func_get_args());
  701. }
  702. public function sinterstore($key, ...$other_keys): \Relay\Relay|false|int
  703. {
  704. return $this->initializeLazyObject()->sinterstore(...\func_get_args());
  705. }
  706. public function sunion($key, ...$other_keys): \Relay\Relay|array|false
  707. {
  708. return $this->initializeLazyObject()->sunion(...\func_get_args());
  709. }
  710. public function sunionstore($key, ...$other_keys): \Relay\Relay|false|int
  711. {
  712. return $this->initializeLazyObject()->sunionstore(...\func_get_args());
  713. }
  714. public function subscribe($channels, $callback): bool
  715. {
  716. return $this->initializeLazyObject()->subscribe(...\func_get_args());
  717. }
  718. public function unsubscribe($channels = []): bool
  719. {
  720. return $this->initializeLazyObject()->unsubscribe(...\func_get_args());
  721. }
  722. public function psubscribe($patterns, $callback): bool
  723. {
  724. return $this->initializeLazyObject()->psubscribe(...\func_get_args());
  725. }
  726. public function punsubscribe($patterns = []): bool
  727. {
  728. return $this->initializeLazyObject()->punsubscribe(...\func_get_args());
  729. }
  730. public function ssubscribe($channels, $callback): bool
  731. {
  732. return $this->initializeLazyObject()->ssubscribe(...\func_get_args());
  733. }
  734. public function sunsubscribe($channels = []): bool
  735. {
  736. return $this->initializeLazyObject()->sunsubscribe(...\func_get_args());
  737. }
  738. public function touch($key_or_array, ...$more_keys): \Relay\Relay|false|int
  739. {
  740. return $this->initializeLazyObject()->touch(...\func_get_args());
  741. }
  742. public function pipeline(): \Relay\Relay|bool
  743. {
  744. return $this->initializeLazyObject()->pipeline(...\func_get_args());
  745. }
  746. public function multi($mode = 0): \Relay\Relay|bool
  747. {
  748. return $this->initializeLazyObject()->multi(...\func_get_args());
  749. }
  750. public function exec(): \Relay\Relay|array|bool
  751. {
  752. return $this->initializeLazyObject()->exec(...\func_get_args());
  753. }
  754. public function wait($replicas, $timeout): \Relay\Relay|false|int
  755. {
  756. return $this->initializeLazyObject()->wait(...\func_get_args());
  757. }
  758. public function unwatch(): \Relay\Relay|bool
  759. {
  760. return $this->initializeLazyObject()->unwatch(...\func_get_args());
  761. }
  762. public function discard(): bool
  763. {
  764. return $this->initializeLazyObject()->discard(...\func_get_args());
  765. }
  766. public function getMode($masked = false): int
  767. {
  768. return $this->initializeLazyObject()->getMode(...\func_get_args());
  769. }
  770. public function clearBytes(): void
  771. {
  772. $this->initializeLazyObject()->clearBytes(...\func_get_args());
  773. }
  774. public function scan(&$iterator, $match = null, $count = 0, $type = null): array|false
  775. {
  776. return $this->initializeLazyObject()->scan($iterator, ...\array_slice(\func_get_args(), 1));
  777. }
  778. public function hscan($key, &$iterator, $match = null, $count = 0): array|false
  779. {
  780. return $this->initializeLazyObject()->hscan($key, $iterator, ...\array_slice(\func_get_args(), 2));
  781. }
  782. public function sscan($key, &$iterator, $match = null, $count = 0): array|false
  783. {
  784. return $this->initializeLazyObject()->sscan($key, $iterator, ...\array_slice(\func_get_args(), 2));
  785. }
  786. public function zscan($key, &$iterator, $match = null, $count = 0): array|false
  787. {
  788. return $this->initializeLazyObject()->zscan($key, $iterator, ...\array_slice(\func_get_args(), 2));
  789. }
  790. public function keys($pattern): \Relay\Relay|array|false
  791. {
  792. return $this->initializeLazyObject()->keys(...\func_get_args());
  793. }
  794. public function slowlog($operation, ...$extra_args): \Relay\Relay|array|bool|int
  795. {
  796. return $this->initializeLazyObject()->slowlog(...\func_get_args());
  797. }
  798. public function smembers($set): \Relay\Relay|array|false
  799. {
  800. return $this->initializeLazyObject()->smembers(...\func_get_args());
  801. }
  802. public function sismember($set, $member): \Relay\Relay|bool
  803. {
  804. return $this->initializeLazyObject()->sismember(...\func_get_args());
  805. }
  806. public function smismember($set, ...$members): \Relay\Relay|array|false
  807. {
  808. return $this->initializeLazyObject()->smismember(...\func_get_args());
  809. }
  810. public function srem($set, $member, ...$members): \Relay\Relay|false|int
  811. {
  812. return $this->initializeLazyObject()->srem(...\func_get_args());
  813. }
  814. public function sadd($set, $member, ...$members): \Relay\Relay|false|int
  815. {
  816. return $this->initializeLazyObject()->sadd(...\func_get_args());
  817. }
  818. public function sort($key, $options = []): \Relay\Relay|array|false|int
  819. {
  820. return $this->initializeLazyObject()->sort(...\func_get_args());
  821. }
  822. public function sort_ro($key, $options = []): \Relay\Relay|array|false
  823. {
  824. return $this->initializeLazyObject()->sort_ro(...\func_get_args());
  825. }
  826. public function smove($srcset, $dstset, $member): \Relay\Relay|bool
  827. {
  828. return $this->initializeLazyObject()->smove(...\func_get_args());
  829. }
  830. public function spop($set, $count = 1): mixed
  831. {
  832. return $this->initializeLazyObject()->spop(...\func_get_args());
  833. }
  834. public function srandmember($set, $count = 1): mixed
  835. {
  836. return $this->initializeLazyObject()->srandmember(...\func_get_args());
  837. }
  838. public function scard($key): \Relay\Relay|false|int
  839. {
  840. return $this->initializeLazyObject()->scard(...\func_get_args());
  841. }
  842. public function script($command, ...$args): mixed
  843. {
  844. return $this->initializeLazyObject()->script(...\func_get_args());
  845. }
  846. public function strlen($key): \Relay\Relay|false|int
  847. {
  848. return $this->initializeLazyObject()->strlen(...\func_get_args());
  849. }
  850. public function hlen($key): \Relay\Relay|false|int
  851. {
  852. return $this->initializeLazyObject()->hlen(...\func_get_args());
  853. }
  854. public function llen($key): \Relay\Relay|false|int
  855. {
  856. return $this->initializeLazyObject()->llen(...\func_get_args());
  857. }
  858. public function xack($key, $group, $ids): \Relay\Relay|false|int
  859. {
  860. return $this->initializeLazyObject()->xack(...\func_get_args());
  861. }
  862. public function xclaim($key, $group, $consumer, $min_idle, $ids, $options): \Relay\Relay|array|bool
  863. {
  864. return $this->initializeLazyObject()->xclaim(...\func_get_args());
  865. }
  866. public function xautoclaim($key, $group, $consumer, $min_idle, $start, $count = -1, $justid = false): \Relay\Relay|array|bool
  867. {
  868. return $this->initializeLazyObject()->xautoclaim(...\func_get_args());
  869. }
  870. public function xlen($key): \Relay\Relay|false|int
  871. {
  872. return $this->initializeLazyObject()->xlen(...\func_get_args());
  873. }
  874. public function xgroup($operation, $key = null, $group = null, $id_or_consumer = null, $mkstream = false, $entries_read = -2): mixed
  875. {
  876. return $this->initializeLazyObject()->xgroup(...\func_get_args());
  877. }
  878. public function xdel($key, $ids): \Relay\Relay|false|int
  879. {
  880. return $this->initializeLazyObject()->xdel(...\func_get_args());
  881. }
  882. public function xinfo($operation, $arg1 = null, $arg2 = null, $count = -1): mixed
  883. {
  884. return $this->initializeLazyObject()->xinfo(...\func_get_args());
  885. }
  886. public function xpending($key, $group, $start = null, $end = null, $count = -1, $consumer = null, $idle = 0): \Relay\Relay|array|false
  887. {
  888. return $this->initializeLazyObject()->xpending(...\func_get_args());
  889. }
  890. public function xrange($key, $start, $end, $count = -1): \Relay\Relay|array|false
  891. {
  892. return $this->initializeLazyObject()->xrange(...\func_get_args());
  893. }
  894. public function xrevrange($key, $end, $start, $count = -1): \Relay\Relay|array|bool
  895. {
  896. return $this->initializeLazyObject()->xrevrange(...\func_get_args());
  897. }
  898. public function xread($streams, $count = -1, $block = -1): \Relay\Relay|array|bool|null
  899. {
  900. return $this->initializeLazyObject()->xread(...\func_get_args());
  901. }
  902. public function xreadgroup($group, $consumer, $streams, $count = 1, $block = 1): \Relay\Relay|array|bool|null
  903. {
  904. return $this->initializeLazyObject()->xreadgroup(...\func_get_args());
  905. }
  906. public function xtrim($key, $threshold, $approx = false, $minid = false, $limit = -1): \Relay\Relay|false|int
  907. {
  908. return $this->initializeLazyObject()->xtrim(...\func_get_args());
  909. }
  910. public function zadd($key, ...$args): mixed
  911. {
  912. return $this->initializeLazyObject()->zadd(...\func_get_args());
  913. }
  914. public function zrandmember($key, $options = null): mixed
  915. {
  916. return $this->initializeLazyObject()->zrandmember(...\func_get_args());
  917. }
  918. public function zrange($key, $start, $end, $options = null): \Relay\Relay|array|false
  919. {
  920. return $this->initializeLazyObject()->zrange(...\func_get_args());
  921. }
  922. public function zrevrange($key, $start, $end, $options = null): \Relay\Relay|array|false
  923. {
  924. return $this->initializeLazyObject()->zrevrange(...\func_get_args());
  925. }
  926. public function zrangebyscore($key, $start, $end, $options = null): \Relay\Relay|array|false
  927. {
  928. return $this->initializeLazyObject()->zrangebyscore(...\func_get_args());
  929. }
  930. public function zrevrangebyscore($key, $start, $end, $options = null): \Relay\Relay|array|false
  931. {
  932. return $this->initializeLazyObject()->zrevrangebyscore(...\func_get_args());
  933. }
  934. public function zrangestore($dst, $src, $start, $end, $options = null): \Relay\Relay|false|int
  935. {
  936. return $this->initializeLazyObject()->zrangestore(...\func_get_args());
  937. }
  938. public function zrangebylex($key, $min, $max, $offset = -1, $count = -1): \Relay\Relay|array|false
  939. {
  940. return $this->initializeLazyObject()->zrangebylex(...\func_get_args());
  941. }
  942. public function zrevrangebylex($key, $max, $min, $offset = -1, $count = -1): \Relay\Relay|array|false
  943. {
  944. return $this->initializeLazyObject()->zrevrangebylex(...\func_get_args());
  945. }
  946. public function zrem($key, ...$args): \Relay\Relay|false|int
  947. {
  948. return $this->initializeLazyObject()->zrem(...\func_get_args());
  949. }
  950. public function zremrangebylex($key, $min, $max): \Relay\Relay|false|int
  951. {
  952. return $this->initializeLazyObject()->zremrangebylex(...\func_get_args());
  953. }
  954. public function zremrangebyrank($key, $start, $end): \Relay\Relay|false|int
  955. {
  956. return $this->initializeLazyObject()->zremrangebyrank(...\func_get_args());
  957. }
  958. public function zremrangebyscore($key, $min, $max): \Relay\Relay|false|int
  959. {
  960. return $this->initializeLazyObject()->zremrangebyscore(...\func_get_args());
  961. }
  962. public function zcard($key): \Relay\Relay|false|int
  963. {
  964. return $this->initializeLazyObject()->zcard(...\func_get_args());
  965. }
  966. public function zcount($key, $min, $max): \Relay\Relay|false|int
  967. {
  968. return $this->initializeLazyObject()->zcount(...\func_get_args());
  969. }
  970. public function zdiff($keys, $options = null): \Relay\Relay|array|false
  971. {
  972. return $this->initializeLazyObject()->zdiff(...\func_get_args());
  973. }
  974. public function zdiffstore($dst, $keys): \Relay\Relay|false|int
  975. {
  976. return $this->initializeLazyObject()->zdiffstore(...\func_get_args());
  977. }
  978. public function zincrby($key, $score, $mem): \Relay\Relay|false|float
  979. {
  980. return $this->initializeLazyObject()->zincrby(...\func_get_args());
  981. }
  982. public function zlexcount($key, $min, $max): \Relay\Relay|false|int
  983. {
  984. return $this->initializeLazyObject()->zlexcount(...\func_get_args());
  985. }
  986. public function zmscore($key, ...$mems): \Relay\Relay|array|false
  987. {
  988. return $this->initializeLazyObject()->zmscore(...\func_get_args());
  989. }
  990. public function zinter($keys, $weights = null, $options = null): \Relay\Relay|array|false
  991. {
  992. return $this->initializeLazyObject()->zinter(...\func_get_args());
  993. }
  994. public function zintercard($keys, $limit = -1): \Relay\Relay|false|int
  995. {
  996. return $this->initializeLazyObject()->zintercard(...\func_get_args());
  997. }
  998. public function zinterstore($dst, $keys, $weights = null, $options = null): \Relay\Relay|false|int
  999. {
  1000. return $this->initializeLazyObject()->zinterstore(...\func_get_args());
  1001. }
  1002. public function zunion($keys, $weights = null, $options = null): \Relay\Relay|array|false
  1003. {
  1004. return $this->initializeLazyObject()->zunion(...\func_get_args());
  1005. }
  1006. public function zunionstore($dst, $keys, $weights = null, $options = null): \Relay\Relay|false|int
  1007. {
  1008. return $this->initializeLazyObject()->zunionstore(...\func_get_args());
  1009. }
  1010. public function zpopmin($key, $count = 1): \Relay\Relay|array|false
  1011. {
  1012. return $this->initializeLazyObject()->zpopmin(...\func_get_args());
  1013. }
  1014. public function zpopmax($key, $count = 1): \Relay\Relay|array|false
  1015. {
  1016. return $this->initializeLazyObject()->zpopmax(...\func_get_args());
  1017. }
  1018. public function _getKeys()
  1019. {
  1020. return $this->initializeLazyObject()->_getKeys(...\func_get_args());
  1021. }
  1022. }