1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
|
<?php
/**
* @generate-function-entries
* @generate-legacy-arginfo
* @generate-class-entries
*/
class RedisCluster {
/**
*
* @var int
* @cvalue REDIS_OPT_FAILOVER
*
*/
public const OPT_SLAVE_FAILOVER = UNKNOWN;
/**
*
* @var int
* @cvalue REDIS_FAILOVER_NONE
*
*/
public const FAILOVER_NONE = UNKNOWN;
/**
*
* @var int
* @cvalue REDIS_FAILOVER_ERROR
*
*/
public const FAILOVER_ERROR = UNKNOWN;
/**
*
* @var int
* @cvalue REDIS_FAILOVER_DISTRIBUTE
*
*/
public const FAILOVER_DISTRIBUTE = UNKNOWN;
/**
*
* @var int
* @cvalue REDIS_FAILOVER_DISTRIBUTE_SLAVES
*
*/
public const FAILOVER_DISTRIBUTE_SLAVES = UNKNOWN;
public function __construct(string|null $name, ?array $seeds = null, int|float $timeout = 0, int|float $read_timeout = 0, bool $persistent = false, #[\SensitiveParameter] mixed $auth = null, ?array $context = null);
/**
* @see Redis::_compress()
*/
public function _compress(string $value): string;
/**
* @see Redis::_uncompress()
*/
public function _uncompress(string $value): string;
/**
* @see Redis::_serialize()
*/
public function _serialize(mixed $value): bool|string;
/**
* @see Redis::_unserialize()
*/
public function _unserialize(string $value): mixed;
/**
* @see Redis::_pack()
*/
public function _pack(mixed $value): string;
/**
* @see Redis::_unpack()
*/
public function _unpack(string $value): mixed;
/**
* @see Redis::_prefix()
*/
public function _prefix(string $key): bool|string;
public function _masters(): array;
public function _redir(): string|null;
/**
* @see Redis::acl
*/
public function acl(string|array $key_or_address, string $subcmd, string ...$args): mixed;
/**
* @see Redis::append()
*/
public function append(string $key, mixed $value): RedisCluster|bool|int;
/**
* @see Redis::bgrewriteaof
*/
public function bgrewriteaof(string|array $key_or_address): RedisCluster|bool;
public function waitaof(string|array $key_or_address, int $numlocal,
int $numreplicas, int $timeout): RedisCluster|array|false;
/**
* @see Redis::bgsave
*/
public function bgsave(string|array $key_or_address): RedisCluster|bool;
/**
* @see Redis::bitcount
*/
public function bitcount(string $key, int $start = 0, int $end = -1, bool $bybit = false): RedisCluster|bool|int;
/**
* @see Redis::bitop
*/
public function bitop(string $operation, string $deskey, string $srckey, string ...$otherkeys): RedisCluster|bool|int;
/**
* Return the position of the first bit set to 0 or 1 in a string.
*
* @see https://https://redis.io/commands/bitpos/
*
* @param string $key The key to check (must be a string)
* @param bool $bit Whether to look for an unset (0) or set (1) bit.
* @param int $start Where in the string to start looking.
* @param int $end Where in the string to stop looking.
* @param bool $bybit If true, Redis will treat $start and $end as BIT values and not bytes, so if start
* was 0 and end was 2, Redis would only search the first two bits.
*/
public function bitpos(string $key, bool $bit, int $start = 0, int $end = -1, bool $bybit = false): RedisCluster|int|false;
/**
* See Redis::blpop()
*/
public function blpop(string|array $key, string|float|int $timeout_or_key, mixed ...$extra_args): RedisCluster|array|null|false;
/**
* See Redis::brpop()
*/
public function brpop(string|array $key, string|float|int $timeout_or_key, mixed ...$extra_args): RedisCluster|array|null|false;
/**
* See Redis::brpoplpush()
*/
public function brpoplpush(string $srckey, string $deskey, int $timeout): mixed;
/**
* Move an element from one list into another.
*
* @see Redis::lmove
*/
public function lmove(string $src, string $dst, string $wherefrom, string $whereto): Redis|string|false;
/**
* Move an element from one list to another, blocking up to a timeout until an element is available.
*
* @see Redis::blmove
*
*/
public function blmove(string $src, string $dst, string $wherefrom, string $whereto, float $timeout): Redis|string|false;
/**
* @see Redis::bzpopmax
*/
public function bzpopmax(string|array $key, string|int $timeout_or_key, mixed ...$extra_args): array;
/**
* @see Redis::bzpopmin
*/
public function bzpopmin(string|array $key, string|int $timeout_or_key, mixed ...$extra_args): array;
/**
* @see Redis::bzmpop
*/
public function bzmpop(float $timeout, array $keys, string $from, int $count = 1): RedisCluster|array|null|false;
/**
* @see Redis::zmpop
*/
public function zmpop(array $keys, string $from, int $count = 1): RedisCluster|array|null|false;
/**
* @see Redis::blmpop()
*/
public function blmpop(float $timeout, array $keys, string $from, int $count = 1): RedisCluster|array|null|false;
/**
* @see Redis::lmpop()
*/
public function lmpop(array $keys, string $from, int $count = 1): RedisCluster|array|null|false;
/**
* @see Redis::clearlasterror()
*/
public function clearlasterror(): bool;
/**
* @see Redis::client
*/
public function client(string|array $key_or_address, string $subcommand, ?string $arg = null): array|string|bool;
/**
* @see Redis::close
*/
public function close(): bool;
/**
* @see Redis::cluster
*/
public function cluster(string|array $key_or_address, string $command, mixed ...$extra_args): mixed;
/**
* @see Redis::command
*/
public function command(mixed ...$extra_args): mixed;
/**
* @see Redis::config()
*/
public function config(string|array $key_or_address, string $subcommand, mixed ...$extra_args): mixed;
/**
* @see Redis::dbsize()
*/
public function dbsize(string|array $key_or_address): RedisCluster|int;
/**
* @see https://redis.io/commands/copy
*/
public function copy(string $src, string $dst, ?array $options = null): RedisCluster|bool;
/**
* @see Redis::decr()
*/
public function decr(string $key, int $by = 1): RedisCluster|int|false;
/**
* @see Redis::decrby()
*/
public function decrby(string $key, int $value): RedisCluster|int|false;
/**
* @see Redis::decrbyfloat
*/
public function decrbyfloat(string $key, float $value): float;
/**
* @see Redis::del()
*/
public function del(array|string $key, string ...$other_keys): RedisCluster|int|false;
/**
* @see Redis::discard
*/
public function discard(): bool;
/**
* @see Redis::dump
*/
public function dump(string $key): RedisCluster|string|false;
/**
* @see Redis::echo()
*/
public function echo(string|array $key_or_address, string $msg): RedisCluster|string|false;
/**
* @see Redis::eval
*/
public function eval(string $script, array $args = [], int $num_keys = 0): mixed;
/**
* @see Redis::eval_ro
*/
public function eval_ro(string $script, array $args = [], int $num_keys = 0): mixed;
/**
* @see Redis::evalsha
*/
public function evalsha(string $script_sha, array $args = [], int $num_keys = 0): mixed;
/**
* @see Redis::evalsha_ro
*/
public function evalsha_ro(string $script_sha, array $args = [], int $num_keys = 0): mixed;
/**
* @see Redis::exec()
*/
public function exec(): array|false;
/**
* @see Redis::exists
*/
public function exists(mixed $key, mixed ...$other_keys): RedisCluster|int|bool;
/**
* @see Redis::touch()
*/
public function touch(mixed $key, mixed ...$other_keys): RedisCluster|int|bool;
/**
* @see Redis::expire
*/
public function expire(string $key, int $timeout, ?string $mode = null): RedisCluster|bool;
/**
* @see Redis::expireat
*/
public function expireat(string $key, int $timestamp, ?string $mode = null): RedisCluster|bool;
/**
* @see Redis::expiretime()
*/
public function expiretime(string $key): RedisCluster|int|false;
/**
* @see Redis::pexpiretime()
*/
public function pexpiretime(string $key): RedisCluster|int|false;
/**
* @see Redis::flushall
*/
public function flushall(string|array $key_or_address, bool $async = false): RedisCluster|bool;
/**
* @see Redis::flushdb
*/
public function flushdb(string|array $key_or_address, bool $async = false): RedisCluster|bool;
/**
* @see Redis::geoadd
*/
public function geoadd(string $key, float $lng, float $lat, string $member, mixed ...$other_triples_and_options): RedisCluster|int|false;
/**
* @see Redis::geodist
*/
public function geodist(string $key, string $src, string $dest, ?string $unit = null): RedisCluster|float|false;
/**
* @see Redis::geohash
*/
public function geohash(string $key, string $member, string ...$other_members): RedisCluster|array|false;
/**
* @see Redis::geopos
*/
public function geopos(string $key, string $member, string ...$other_members): RedisCluster|array|false;
/**
* @see Redis::georadius
*/
public function georadius(string $key, float $lng, float $lat, float $radius, string $unit, array $options = []): mixed;
/**
* @see Redis::georadius_ro
*/
public function georadius_ro(string $key, float $lng, float $lat, float $radius, string $unit, array $options = []): mixed;
/**
* @see Redis::georadiusbymember
*/
public function georadiusbymember(string $key, string $member, float $radius, string $unit, array $options = []): mixed;
/**
* @see Redis::georadiusbymember_ro
*/
public function georadiusbymember_ro(string $key, string $member, float $radius, string $unit, array $options = []): mixed;
/**
* @see https://redis.io/commands/geosearch
*/
public function geosearch(string $key, array|string $position, array|int|float $shape, string $unit, array $options = []): RedisCluster|array;
/**
* @see https://redis.io/commands/geosearchstore
*/
public function geosearchstore(string $dst, string $src, array|string $position, array|int|float $shape, string $unit, array $options = []): RedisCluster|array|int|false;
/**
* @see Redis::get
*/
public function get(string $key): mixed;
/**
* @see Redis::getdel
*/
public function getdel(string $key): mixed;
/**
* @see Redis::getWithMeta
*/
public function getWithMeta(string $key): RedisCluster|array|false;
/**
* @see Redis::getEx
*/
public function getex(string $key, array $options = []): RedisCluster|string|false;
/**
* @see Redis::getbit
*/
public function getbit(string $key, int $value): RedisCluster|int|false;
/**
* @see Redis::getlasterror
*/
public function getlasterror(): string|null;
/**
* @see Redis::getmode
*/
public function getmode(): int;
/**
* @see Redis::getoption
*/
public function getoption(int $option): mixed;
/**
* @see Redis::getrange
*/
public function getrange(string $key, int $start, int $end): RedisCluster|string|false;
/**
* @see Redis::lcs
*/
public function lcs(string $key1, string $key2, ?array $options = null): RedisCluster|string|array|int|false;
/**
* @see Redis::getset
*/
public function getset(string $key, mixed $value): RedisCluster|string|bool;
/**
* @see Redis::gettransferredbytes
*/
public function gettransferredbytes(): array|false;
/**
* @see Redis::cleartransferredbytes
*/
public function cleartransferredbytes(): void;
/**
* @see Redis::hdel
*/
public function hdel(string $key, string $member, string ...$other_members): RedisCluster|int|false;
/**
* @see Redis::hexists
*/
public function hexists(string $key, string $member): RedisCluster|bool;
/**
* @see Redis::hget
*/
public function hget(string $key, string $member): mixed;
/**
* @see Redis::hgetall
*/
public function hgetall(string $key): RedisCluster|array|false;
/**
* @see Redis::hincrby
*/
public function hincrby(string $key, string $member, int $value): RedisCluster|int|false;
/**
* @see Redis::hincrbyfloat
*/
public function hincrbyfloat(string $key, string $member, float $value): RedisCluster|float|false;
/**
* @see Redis::hkeys
*/
public function hkeys(string $key): RedisCluster|array|false;
/**
* @see Redis::hlen
*/
public function hlen(string $key): RedisCluster|int|false;
/**
* @see Redis::hmget
*/
public function hmget(string $key, array $keys): RedisCluster|array|false;
/**
* @see Redis::hmset
*/
public function hmset(string $key, array $key_values): RedisCluster|bool;
/**
* @see Redis::hscan
*/
public function hscan(string $key, null|int|string &$iterator, ?string $pattern = null, int $count = 0): array|bool;
/**
* @see Redis::expiremember
*/
public function expiremember(string $key, string $field, int $ttl, ?string $unit = null): Redis|int|false;
/**
* @see Redis::expirememberat
*/
public function expirememberat(string $key, string $field, int $timestamp): Redis|int|false;
/**
* @see https://redis.io/commands/hrandfield
*/
public function hrandfield(string $key, ?array $options = null): RedisCluster|string|array;
/**
* @see Redis::hset
*/
public function hset(string $key, string $member, mixed $value): RedisCluster|int|false;
/**
* @see Redis::hsetnx
*/
public function hsetnx(string $key, string $member, mixed $value): RedisCluster|bool;
/**
* @see Redis::hstrlen
*/
public function hstrlen(string $key, string $field): RedisCluster|int|false;
/**
* @see Redis::hvals
*/
public function hvals(string $key): RedisCluster|array|false;
/**
* @see Redis::incr
*/
public function incr(string $key, int $by = 1): RedisCluster|int|false;
/**
* @see Redis::incrby
*/
public function incrby(string $key, int $value): RedisCluster|int|false;
/**
* @see Redis::incrbyfloat
*/
public function incrbyfloat(string $key, float $value): RedisCluster|float|false;
/**
* Retrieve information about the connected redis-server. If no arguments are passed to
* this function, redis will return every info field. Alternatively you may pass a specific
* section you want returned (e.g. 'server', or 'memory') to receive only information pertaining
* to that section.
*
* If connected to Redis server >= 7.0.0 you may pass multiple optional sections.
*
* @see https://redis.io/commands/info/
*
* @param string|array $key_or_address Either a key name or array with host and port indicating
* which cluster node we want to send the command to.
* @param string $sections Optional section(s) you wish Redis server to return.
*
* @return RedisCluster|array|false
*/
public function info(string|array $key_or_address, string ...$sections): RedisCluster|array|false;
/**
* @see Redis::keys
*/
public function keys(string $pattern): RedisCluster|array|false;
/**
* @see Redis::lastsave
*/
public function lastsave(string|array $key_or_address): RedisCluster|int|false;
/**
* @see Redis::lget
*/
public function lget(string $key, int $index): RedisCluster|string|bool;
/**
* @see Redis::lindex
*/
public function lindex(string $key, int $index): mixed;
/**
* @see Redis::linsert
*/
public function linsert(string $key, string $pos, mixed $pivot, mixed $value): RedisCluster|int|false;
/**
* @see Redis::llen
*/
public function llen(string $key): RedisCluster|int|bool;
/**
* @see Redis::lpop
*/
public function lpop(string $key, int $count = 0): RedisCluster|bool|string|array;
/**
* @see Redis::lpos
*/
public function lpos(string $key, mixed $value, ?array $options = null): Redis|null|bool|int|array;
/**
* @see Redis::lpush
*/
public function lpush(string $key, mixed $value, mixed ...$other_values): RedisCluster|int|bool;
/**
* @see Redis::lpushx
*/
public function lpushx(string $key, mixed $value): RedisCluster|int|bool;
/**
* @see Redis::lrange
*/
public function lrange(string $key, int $start, int $end): RedisCluster|array|false;
/**
* @see Redis::lrem
*/
public function lrem(string $key, mixed $value, int $count = 0): RedisCluster|int|bool;
/**
* @see Redis::lset
*/
public function lset(string $key, int $index, mixed $value): RedisCluster|bool;
/**
* @see Redis::ltrim
*/
public function ltrim(string $key, int $start, int $end): RedisCluster|bool;
/**
* @see Redis::mget
*/
public function mget(array $keys): RedisCluster|array|false;
/**
* @see Redis::mset
*/
public function mset(array $key_values): RedisCluster|bool;
/**
* @see Redis::msetnx
*/
public function msetnx(array $key_values): RedisCluster|array|false;
/* We only support Redis::MULTI in RedisCluster but take the argument
so we can test MULTI..EXEC with RedisTest.php and in the event
we add pipeline support in the future. */
public function multi(int $value = Redis::MULTI): RedisCluster|bool;
/**
* @see Redis::object
*/
public function object(string $subcommand, string $key): RedisCluster|int|string|false;
/**
* @see Redis::persist
*/
public function persist(string $key): RedisCluster|bool;
/**
* @see Redis::pexpire
*/
public function pexpire(string $key, int $timeout, ?string $mode = null): RedisCluster|bool;
/**
* @see Redis::pexpireat
*/
public function pexpireat(string $key, int $timestamp, ?string $mode = null): RedisCluster|bool;
/**
* @see Redis::pfadd()
*/
public function pfadd(string $key, array $elements): RedisCluster|bool;
/**
* @see Redis::pfcount()
*/
public function pfcount(string $key): RedisCluster|int|false;
/**
* @see Redis::pfmerge()
*/
public function pfmerge(string $key, array $keys): RedisCluster|bool;
/**
* PING an instance in the redis cluster.
*
* @see Redis::ping()
*
* @param string|array $key_or_address Either a key name or a two element array with host and
* address, informing RedisCluster which node to ping.
*
* @param string $message An optional message to send.
*
* @return mixed This method always returns `true` if no message was sent, and the message itself
* if one was.
*/
public function ping(string|array $key_or_address, ?string $message = null): mixed;
/**
* @see Redis::psetex
*/
public function psetex(string $key, int $timeout, string $value): RedisCluster|bool;
/**
* @see Redis::psubscribe
*/
public function psubscribe(array $patterns, callable $callback): void;
/**
* @see Redis::pttl
*/
public function pttl(string $key): RedisCluster|int|false;
/**
* @see Redis::publish
*/
public function publish(string $channel, string $message): RedisCluster|bool|int;
/**
* @see Redis::pubsub
*/
public function pubsub(string|array $key_or_address, string ...$values): mixed;
/**
* @see Redis::punsubscribe
*/
public function punsubscribe(string $pattern, string ...$other_patterns): bool|array;
/**
* @see Redis::randomkey
*/
public function randomkey(string|array $key_or_address): RedisCluster|bool|string;
/**
* @see Redis::rawcommand
*/
public function rawcommand(string|array $key_or_address, string $command, mixed ...$args): mixed;
/**
* @see Redis::rename
*/
public function rename(string $key_src, string $key_dst): RedisCluster|bool;
/**
* @see Redis::renamenx
*/
public function renamenx(string $key, string $newkey): RedisCluster|bool;
/**
* @see Redis::restore
*/
public function restore(string $key, int $timeout, string $value, ?array $options = null): RedisCluster|bool;
/**
* @see Redis::role
*/
public function role(string|array $key_or_address): mixed;
/**
* @see Redis::rpop()
*/
public function rpop(string $key, int $count = 0): RedisCluster|bool|string|array;
/**
* @see Redis::rpoplpush()
*/
public function rpoplpush(string $src, string $dst): RedisCluster|bool|string;
/**
* @see Redis::rpush
*/
public function rpush(string $key, mixed ...$elements): RedisCluster|int|false;
/**
* @see Redis::rpushx
*/
public function rpushx(string $key, string $value): RedisCluster|bool|int;
/**
* @see Redis::sadd()
*/
public function sadd(string $key, mixed $value, mixed ...$other_values): RedisCluster|int|false;
/**
* @see Redis::saddarray()
*/
public function saddarray(string $key, array $values): RedisCluster|bool|int;
/**
* @see Redis::save
*/
public function save(string|array $key_or_address): RedisCluster|bool;
/**
* @see Redis::scan
*/
public function scan(null|int|string &$iterator, string|array $key_or_address, ?string $pattern = null, int $count = 0): bool|array;
/**
* @see Redis::scard
*/
public function scard(string $key): RedisCluster|int|false;
/**
* @see Redis::script
*/
public function script(string|array $key_or_address, mixed ...$args): mixed;
/**
* @see Redis::sdiff()
*/
public function sdiff(string $key, string ...$other_keys): RedisCluster|array|false;
/**
* @see Redis::sdiffstore()
*/
public function sdiffstore(string $dst, string $key, string ...$other_keys): RedisCluster|int|false;
/**
* @see https://redis.io/commands/set
*/
public function set(string $key, mixed $value, mixed $options = null): RedisCluster|string|bool;
/**
* @see Redis::setbit
*/
public function setbit(string $key, int $offset, bool $onoff): RedisCluster|int|false;
/**
* @see Redis::setex
*/
public function setex(string $key, int $expire, mixed $value): RedisCluster|bool;
/**
* @see Redis::setnx
*/
public function setnx(string $key, mixed $value): RedisCluster|bool;
/**
* @see Redis::setoption
*/
public function setoption(int $option, mixed $value): bool;
/**
* @see Redis::setrange
*/
public function setrange(string $key, int $offset, string $value): RedisCluster|int|false;
/**
* @see Redis::sinter()
*/
public function sinter(array|string $key, string ...$other_keys): RedisCluster|array|false;
/**
* @see Redis::sintercard
*/
public function sintercard(array $keys, int $limit = -1): RedisCluster|int|false;
/**
* @see Redis::sinterstore()
*/
public function sinterstore(array|string $key, string ...$other_keys): RedisCluster|int|false;
/**
* @see Redis::sismember
*/
public function sismember(string $key, mixed $value): RedisCluster|bool;
/**
* @see Redis::smismember
*/
public function smismember(string $key, string $member, string ...$other_members): RedisCluster|array|false;
/**
* @see Redis::slowlog
*/
public function slowlog(string|array $key_or_address, mixed ...$args): mixed;
/**
* @see Redis::smembers()
*/
public function smembers(string $key): RedisCluster|array|false;
/**
* @see Redis::smove()
*/
public function smove(string $src, string $dst, string $member): RedisCluster|bool;
/**
* @see Redis::sort()
*/
public function sort(string $key, ?array $options = null): RedisCluster|array|bool|int|string;
/**
* @see Redis::sort_ro()
*/
public function sort_ro(string $key, ?array $options = null): RedisCluster|array|bool|int|string;
/**
* @see Redis::spop
*/
public function spop(string $key, int $count = 0): RedisCluster|string|array|false;
/**
* @see Redis::srandmember
*/
public function srandmember(string $key, int $count = 0): RedisCluster|string|array|false;
/**
* @see Redis::srem
*/
public function srem(string $key, mixed $value, mixed ...$other_values): RedisCluster|int|false;
/**
* @see Redis::sscan
*/
public function sscan(string $key, null|int|string &$iterator, ?string $pattern = null, int $count = 0): array|false;
/**
* @see Redis::strlen
*/
public function strlen(string $key): RedisCluster|int|false;
/**
* @see Redis::subscribe
*/
public function subscribe(array $channels, callable $cb): void;
/**
* @see Redis::sunion()
*/
public function sunion(string $key, string ...$other_keys): RedisCluster|bool|array;
/**
* @see Redis::sunionstore()
*/
public function sunionstore(string $dst, string $key, string ...$other_keys): RedisCluster|int|false;
/**
* @see Redis::time
*/
public function time(string|array $key_or_address): RedisCluster|bool|array;
/**
* @see Redis::ttl
*/
public function ttl(string $key): RedisCluster|int|false;
/**
* @see Redis::type
*/
public function type(string $key): RedisCluster|int|false;
/**
* @see Redis::unsubscribe
*/
public function unsubscribe(array $channels): bool|array;
/**
* @see Redis::unlink
*/
public function unlink(array|string $key, string ...$other_keys): RedisCluster|int|false;
/**
* @see Redis::unwatch
*/
public function unwatch(): bool;
/**
* @see Redis::watch
*/
public function watch(string $key, string ...$other_keys): RedisCluster|bool;
/**
* @see Redis::xack
*/
public function xack(string $key, string $group, array $ids): RedisCluster|int|false;
/**
* @see Redis::xadd
*/
public function xadd(string $key, string $id, array $values, int $maxlen = 0, bool $approx = false): RedisCluster|string|false;
/**
* @see Redis::xclaim
*/
public function xclaim(string $key, string $group, string $consumer, int $min_iddle, array $ids, array $options): RedisCluster|string|array|false;
/**
* @see Redis::xdel
*/
public function xdel(string $key, array $ids): RedisCluster|int|false;
/**
* @see Redis::xgroup
*/
public function xgroup(string $operation, ?string $key = null, ?string $group = null, ?string $id_or_consumer = null,
bool $mkstream = false, int $entries_read = -2): mixed;
/**
* @see Redis::xautoclaim
*/
public function xautoclaim(string $key, string $group, string $consumer, int $min_idle, string $start, int $count = -1, bool $justid = false): RedisCluster|bool|array;
/**
* @see Redis::xinfo
*/
public function xinfo(string $operation, ?string $arg1 = null, ?string $arg2 = null, int $count = -1): mixed;
/**
* @see Redis::xlen
*/
public function xlen(string $key): RedisCluster|int|false;
/**
* @see Redis::xpending
*/
public function xpending(string $key, string $group, ?string $start = null, ?string $end = null, int $count = -1, ?string $consumer = null): RedisCluster|array|false;
/**
* @see Redis::xrange
*/
public function xrange(string $key, string $start, string $end, int $count = -1): RedisCluster|bool|array;
/**
* @see Redis::xread
*/
public function xread(array $streams, int $count = -1, int $block = -1): RedisCluster|bool|array;
/**
* @see Redis::xreadgroup
*/
public function xreadgroup(string $group, string $consumer, array $streams, int $count = 1, int $block = 1): RedisCluster|bool|array;
/**
* @see Redis::xrevrange
*/
public function xrevrange(string $key, string $start, string $end, int $count = -1): RedisCluster|bool|array;
/**
* @see Redis::xtrim
*/
public function xtrim(string $key, int $maxlen, bool $approx = false, bool $minid = false, int $limit = -1): RedisCluster|int|false;
/**
* @see Redis::zadd
*/
public function zadd(string $key, array|float $score_or_options, mixed ...$more_scores_and_mems): RedisCluster|int|float|false;
/**
* @see Redis::zcard
*/
public function zcard(string $key): RedisCluster|int|false;
/**
* @see Redis::zcount
*/
public function zcount(string $key, string $start, string $end): RedisCluster|int|false;
/**
* @see Redis::zincrby
*/
public function zincrby(string $key, float $value, string $member): RedisCluster|float|false;
/**
* @see Redis::zinterstore
*/
public function zinterstore(string $dst, array $keys, ?array $weights = null, ?string $aggregate = null): RedisCluster|int|false;
/**
* @see Redis::zintercard
*/
public function zintercard(array $keys, int $limit = -1): RedisCluster|int|false;
/**
* @see Redis::zlexcount
*/
public function zlexcount(string $key, string $min, string $max): RedisCluster|int|false;
/**
* @see Redis::zpopmax
*/
public function zpopmax(string $key, ?int $value = null): RedisCluster|bool|array;
/**
* @see Redis::zpopmin
*/
public function zpopmin(string $key, ?int $value = null): RedisCluster|bool|array;
/**
* @see Redis::zrange
*/
public function zrange(string $key, mixed $start, mixed $end, array|bool|null $options = null): RedisCluster|array|bool;
/**
* @see Redis::zrangestore
*/
public function zrangestore(string $dstkey, string $srckey, int $start, int $end,
array|bool|null $options = null): RedisCluster|int|false;
/**
* @see https://redis.io/commands/zrandmember
*/
public function zrandmember(string $key, ?array $options = null): RedisCluster|string|array;
/**
* @see Redis::zrangebylex
*/
public function zrangebylex(string $key, string $min, string $max, int $offset = -1, int $count = -1): RedisCluster|array|false;
/**
* @see Redis::zrangebyscore
*/
public function zrangebyscore(string $key, string $start, string $end, array $options = []): RedisCluster|array|false;
/**
* @see Redis::zrank
*/
public function zrank(string $key, mixed $member): RedisCluster|int|false;
/**
* @see Redis::zrem
*/
public function zrem(string $key, string $value, string ...$other_values): RedisCluster|int|false;
/**
* @see Redis::zremrangebylex
*/
public function zremrangebylex(string $key, string $min, string $max): RedisCluster|int|false;
/**
* @see Redis::zremrangebyrank
*/
public function zremrangebyrank(string $key, string $min, string $max): RedisCluster|int|false;
/**
* @see Redis::zremrangebyscore
*/
public function zremrangebyscore(string $key, string $min, string $max): RedisCluster|int|false;
/**
* @see Redis::zrevrange
*/
public function zrevrange(string $key, string $min, string $max, ?array $options = null): RedisCluster|bool|array;
/**
* @see Redis::zrevrangebylex
*/
public function zrevrangebylex(string $key, string $min, string $max, ?array $options = null): RedisCluster|bool|array;
/**
* @see Redis::zrevrangebyscore
*/
public function zrevrangebyscore(string $key, string $min, string $max, ?array $options = null): RedisCluster|bool|array;
/**
* @see Redis::zrevrank
*/
public function zrevrank(string $key, mixed $member): RedisCluster|int|false;
/**
* @see Redis::zscan
*/
public function zscan(string $key, null|int|string &$iterator, ?string $pattern = null, int $count = 0): RedisCluster|bool|array;
/**
* @see Redis::zscore
*/
public function zscore(string $key, mixed $member): RedisCluster|float|false;
/**
* @see https://redis.io/commands/zmscore
*/
public function zmscore(string $key, mixed $member, mixed ...$other_members): Redis|array|false;
/**
* @see Redis::zunionstore
*/
public function zunionstore(string $dst, array $keys, ?array $weights = null, ?string $aggregate = null): RedisCluster|int|false;
/**
* @see https://redis.io/commands/zinter
*/
public function zinter(array $keys, ?array $weights = null, ?array $options = null): RedisCluster|array|false;
/**
* @see https://redis.io/commands/zdiffstore
*/
public function zdiffstore(string $dst, array $keys): RedisCluster|int|false;
/**
* @see https://redis.io/commands/zunion
*/
public function zunion(array $keys, ?array $weights = null, ?array $options = null): RedisCluster|array|false;
/**
* @see https://redis.io/commands/zdiff
*/
public function zdiff(array $keys, ?array $options = null): RedisCluster|array|false;
}
class RedisClusterException extends RuntimeException {}
|