Module: Redis::Commands::SortedSets
- Included in:
- Redis::Commands
- Defined in:
- lib/redis/commands/sorted_sets.rb
Instance Method Summary collapse
-
#bzmpop(timeout, *keys, modifier: "MIN", count: nil) ⇒ Array<String, Array<String, Float>>
Removes and returns up to count members with scores in the sorted set stored at key.
-
#bzpopmax(*args) ⇒ Array<String, String, Float>?
Removes and returns up to count members with the highest scores in the sorted set stored at keys, or block until one is available.
-
#bzpopmin(*args) ⇒ Array<String, String, Float>?
Removes and returns up to count members with the lowest scores in the sorted set stored at keys, or block until one is available.
-
#zadd(key, *args, nx: nil, xx: nil, lt: nil, gt: nil, ch: nil, incr: nil) ⇒ Boolean, ...
Add one or more members to a sorted set, or update the score for members that already exist.
-
#zcard(key) ⇒ Integer
Get the number of members in a sorted set.
-
#zcount(key, min, max) ⇒ Integer
Count the members in a sorted set with scores within the given values.
-
#zdiff(*keys, with_scores: false) ⇒ Array<String>, Array<[String, Float]>
Return the difference between the first and all successive input sorted sets.
-
#zdiffstore(*args) ⇒ Integer
Compute the difference between the first and all successive input sorted sets and store the resulting sorted set in a new key.
-
#zincrby(key, increment, member) ⇒ Float
Increment the score of a member in a sorted set.
-
#zinter(*args) ⇒ Array<String>, Array<[String, Float]>
Return the intersection of multiple sorted sets.
-
#zinterstore(*args) ⇒ Integer
Intersect multiple sorted sets and store the resulting sorted set in a new key.
-
#zlexcount(key, min, max) ⇒ Integer
Count the members, with the same score in a sorted set, within the given lexicographical range.
-
#zmpop(*keys, modifier: "MIN", count: nil) ⇒ Array<String, Array<String, Float>>
Removes and returns up to count members with scores in the sorted set stored at key.
-
#zmscore(key, *members) ⇒ Array<Float>
Get the scores associated with the given members in a sorted set.
-
#zpopmax(key, count = nil) ⇒ Array<String, Float>+
Removes and returns up to count members with the highest scores in the sorted set stored at key.
-
#zpopmin(key, count = nil) ⇒ Array<String, Float>+
Removes and returns up to count members with the lowest scores in the sorted set stored at key.
-
#zrandmember(key, count = nil, withscores: false, with_scores: withscores) ⇒ nil, ...
Get one or more random members from a sorted set.
-
#zrange(key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil, withscores: false, with_scores: withscores) ⇒ Array<String>, Array<[String, Float]>
Return a range of members in a sorted set, by index, score or lexicographical ordering.
-
#zrangebylex(key, min, max, limit: nil) ⇒ Array<String>, Array<[String, Float]>
Return a range of members with the same score in a sorted set, by lexicographical ordering.
-
#zrangebyscore(key, min, max, withscores: false, with_scores: withscores, limit: nil) ⇒ Array<String>, Array<[String, Float]>
Return a range of members in a sorted set, by score.
-
#zrangestore(dest_key, src_key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil) ⇒ Integer
Select a range of members in a sorted set, by index, score or lexicographical ordering and store the resulting sorted set in a new key.
-
#zrank(key, member, withscore: false, with_score: withscore) ⇒ Integer, [Integer, Float]
Determine the index of a member in a sorted set.
-
#zrem(key, member) ⇒ Boolean, Integer
Remove one or more members from a sorted set.
-
#zremrangebyrank(key, start, stop) ⇒ Integer
Remove all members in a sorted set within the given indexes.
-
#zremrangebyscore(key, min, max) ⇒ Integer
Remove all members in a sorted set within the given scores.
-
#zrevrange(key, start, stop, withscores: false, with_scores: withscores) ⇒ Object
Return a range of members in a sorted set, by index, with scores ordered from high to low.
-
#zrevrangebylex(key, max, min, limit: nil) ⇒ Object
Return a range of members with the same score in a sorted set, by reversed lexicographical ordering.
-
#zrevrangebyscore(key, max, min, withscores: false, with_scores: withscores, limit: nil) ⇒ Object
Return a range of members in a sorted set, by score, with scores ordered from high to low.
-
#zrevrank(key, member, withscore: false, with_score: withscore) ⇒ Integer, [Integer, Float]
Determine the index of a member in a sorted set, with scores ordered from high to low.
-
#zscan(key, cursor, **options) ⇒ String, Array<[String, Float]>
Scan a sorted set.
-
#zscan_each(key, **options, &block) ⇒ Enumerator
Scan a sorted set.
-
#zscore(key, member) ⇒ Float
Get the score associated with the given member in a sorted set.
-
#zunion(*args) ⇒ Array<String>, Array<[String, Float]>
Return the union of multiple sorted sets.
-
#zunionstore(*args) ⇒ Integer
Add multiple sorted sets and store the resulting sorted set in a new key.
Instance Method Details
#bzmpop(timeout, *keys, modifier: "MIN", count: nil) ⇒ Array<String, Array<String, Float>>
Removes and returns up to count members with scores in the sorted set stored at key.
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/redis/commands/sorted_sets.rb', line 188 def bzmpop(timeout, *keys, modifier: "MIN", count: nil) raise ArgumentError, "Pick either MIN or MAX" unless modifier == "MIN" || modifier == "MAX" args = [:bzmpop, timeout, keys.size, *keys, modifier] args << "COUNT" << Integer(count) if count send_blocking_command(args, timeout) do |response| response&.map do |entry| case entry when String then entry when Array then entry.map { |pair| FloatifyPairs.call(pair) }.flatten(1) end end end end |
#bzpopmax(*args) ⇒ Array<String, String, Float>?
Removes and returns up to count members with the highest scores in the sorted set stored at keys, or block until one is available.
251 252 253 254 255 |
# File 'lib/redis/commands/sorted_sets.rb', line 251 def bzpopmax(*args) _bpop(:bzpopmax, args) do |reply| reply.is_a?(Array) ? [reply[0], reply[1], Floatify.call(reply[2])] : reply end end |
#bzpopmin(*args) ⇒ Array<String, String, Float>?
Removes and returns up to count members with the lowest scores in the sorted set stored at keys, or block until one is available.
272 273 274 275 276 |
# File 'lib/redis/commands/sorted_sets.rb', line 272 def bzpopmin(*args) _bpop(:bzpopmin, args) do |reply| reply.is_a?(Array) ? [reply[0], reply[1], Floatify.call(reply[2])] : reply end end |
#zadd(key, *args, nx: nil, xx: nil, lt: nil, gt: nil, ch: nil, incr: nil) ⇒ Boolean, ...
Add one or more members to a sorted set, or update the score for members that already exist.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/redis/commands/sorted_sets.rb', line 53 def zadd(key, *args, nx: nil, xx: nil, lt: nil, gt: nil, ch: nil, incr: nil) command = [:zadd, key] command << "NX" if nx command << "XX" if xx command << "LT" if lt command << "GT" if gt command << "CH" if ch command << "INCR" if incr if args.size == 1 && args[0].is_a?(Array) members_to_add = args[0] return 0 if members_to_add.empty? # Variadic: return float if INCR, integer if !INCR send_command(command + members_to_add, &(incr ? Floatify : nil)) elsif args.size == 2 # Single pair: return float if INCR, boolean if !INCR send_command(command + args, &(incr ? Floatify : Boolify)) else raise ArgumentError, "wrong number of arguments" end end |
#zcard(key) ⇒ Integer
Get the number of members in a sorted set.
14 15 16 |
# File 'lib/redis/commands/sorted_sets.rb', line 14 def zcard(key) send_command([:zcard, key]) end |
#zcount(key, min, max) ⇒ Integer
Count the members in a sorted set with scores within the given values.
712 713 714 |
# File 'lib/redis/commands/sorted_sets.rb', line 712 def zcount(key, min, max) send_command([:zcount, key, min, max]) end |
#zdiff(*keys, with_scores: false) ⇒ Array<String>, Array<[String, Float]>
Return the difference between the first and all successive input sorted sets
821 822 823 |
# File 'lib/redis/commands/sorted_sets.rb', line 821 def zdiff(*keys, with_scores: false) _zsets_operation(:zdiff, *keys, with_scores: with_scores) end |
#zdiffstore(*args) ⇒ Integer
Compute the difference between the first and all successive input sorted sets and store the resulting sorted set in a new key
837 838 839 |
# File 'lib/redis/commands/sorted_sets.rb', line 837 def zdiffstore(*args) _zsets_operation_store(:zdiffstore, *args) end |
#zincrby(key, increment, member) ⇒ Float
Increment the score of a member in a sorted set.
86 87 88 |
# File 'lib/redis/commands/sorted_sets.rb', line 86 def zincrby(key, increment, member) send_command([:zincrby, key, increment, member], &Floatify) end |
#zinter(*args) ⇒ Array<String>, Array<[String, Float]>
Return the intersection of multiple sorted sets
735 736 737 |
# File 'lib/redis/commands/sorted_sets.rb', line 735 def zinter(*args) _zsets_operation(:zinter, *args) end |
#zinterstore(*args) ⇒ Integer
Intersect multiple sorted sets and store the resulting sorted set in a new key.
754 755 756 |
# File 'lib/redis/commands/sorted_sets.rb', line 754 def zinterstore(*args) _zsets_operation_store(:zinterstore, *args) end |
#zlexcount(key, min, max) ⇒ Integer
Count the members, with the same score in a sorted set, within the given lexicographical range.
543 544 545 |
# File 'lib/redis/commands/sorted_sets.rb', line 543 def zlexcount(key, min, max) send_command([:zlexcount, key, min, max]) end |
#zmpop(*keys, modifier: "MIN", count: nil) ⇒ Array<String, Array<String, Float>>
Removes and returns up to count members with scores in the sorted set stored at key.
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/redis/commands/sorted_sets.rb', line 220 def zmpop(*keys, modifier: "MIN", count: nil) raise ArgumentError, "Pick either MIN or MAX" unless modifier == "MIN" || modifier == "MAX" args = [:zmpop, keys.size, *keys, modifier] args << "COUNT" << Integer(count) if count send_command(args) do |response| response&.map do |entry| case entry when String then entry when Array then entry.map { |pair| FloatifyPairs.call(pair) }.flatten(1) end end end end |
#zmscore(key, *members) ⇒ Array<Float>
Get the scores associated with the given members in a sorted set.
300 301 302 303 304 |
# File 'lib/redis/commands/sorted_sets.rb', line 300 def zmscore(key, *members) send_command([:zmscore, key, *members]) do |reply| reply.map(&Floatify) end end |
#zpopmax(key, count = nil) ⇒ Array<String, Float>+
Removes and returns up to count members with the highest scores in the sorted set stored at key.
138 139 140 141 142 143 144 145 |
# File 'lib/redis/commands/sorted_sets.rb', line 138 def zpopmax(key, count = nil) command = [:zpopmax, key] command << Integer(count) if count send_command(command) do |members| members = FloatifyPairs.call(members) count.to_i > 1 ? members : members.first end end |
#zpopmin(key, count = nil) ⇒ Array<String, Float>+
Removes and returns up to count members with the lowest scores in the sorted set stored at key.
161 162 163 164 165 166 167 168 |
# File 'lib/redis/commands/sorted_sets.rb', line 161 def zpopmin(key, count = nil) command = [:zpopmin, key] command << Integer(count) if count send_command(command) do |members| members = FloatifyPairs.call(members) count.to_i > 1 ? members : members.first end end |
#zrandmember(key, count = nil, withscores: false, with_scores: withscores) ⇒ nil, ...
Get one or more random members from a sorted set.
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
# File 'lib/redis/commands/sorted_sets.rb', line 328 def zrandmember(key, count = nil, withscores: false, with_scores: withscores) if with_scores && count.nil? raise ArgumentError, "count argument must be specified" end args = [:zrandmember, key] args << Integer(count) if count if with_scores args << "WITHSCORES" block = FloatifyPairs end send_command(args, &block) end |
#zrange(key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil, withscores: false, with_scores: withscores) ⇒ Array<String>, Array<[String, Float]>
Return a range of members in a sorted set, by index, score or lexicographical ordering.
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 |
# File 'lib/redis/commands/sorted_sets.rb', line 367 def zrange(key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil, withscores: false, with_scores: withscores) if by_score && by_lex raise ArgumentError, "only one of :by_score or :by_lex can be specified" end args = [:zrange, key, start, stop] if by_score args << "BYSCORE" elsif by_lex args << "BYLEX" end args << "REV" if rev if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end if with_scores args << "WITHSCORES" block = FloatifyPairs end send_command(args, &block) end |
#zrangebylex(key, min, max, limit: nil) ⇒ Array<String>, Array<[String, Float]>
Return a range of members with the same score in a sorted set, by lexicographical ordering
568 569 570 571 572 573 574 575 576 577 |
# File 'lib/redis/commands/sorted_sets.rb', line 568 def zrangebylex(key, min, max, limit: nil) args = [:zrangebylex, key, min, max] if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end send_command(args) end |
#zrangebyscore(key, min, max, withscores: false, with_scores: withscores, limit: nil) ⇒ Array<String>, Array<[String, Float]>
Return a range of members in a sorted set, by score.
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 |
# File 'lib/redis/commands/sorted_sets.rb', line 628 def zrangebyscore(key, min, max, withscores: false, with_scores: withscores, limit: nil) args = [:zrangebyscore, key, min, max] if with_scores args << "WITHSCORES" block = FloatifyPairs end if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end send_command(args, &block) end |
#zrangestore(dest_key, src_key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil) ⇒ Integer
Select a range of members in a sorted set, by index, score or lexicographical ordering and store the resulting sorted set in a new key.
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
# File 'lib/redis/commands/sorted_sets.rb', line 409 def zrangestore(dest_key, src_key, start, stop, byscore: false, by_score: byscore, bylex: false, by_lex: bylex, rev: false, limit: nil) if by_score && by_lex raise ArgumentError, "only one of :by_score or :by_lex can be specified" end args = [:zrangestore, dest_key, src_key, start, stop] if by_score args << "BYSCORE" elsif by_lex args << "BYLEX" end args << "REV" if rev if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end send_command(args) end |
#zrank(key, member, withscore: false, with_score: withscore) ⇒ Integer, [Integer, Float]
Determine the index of a member in a sorted set.
470 471 472 473 474 475 476 477 478 479 |
# File 'lib/redis/commands/sorted_sets.rb', line 470 def zrank(key, member, withscore: false, with_score: withscore) args = [:zrank, key, member] if with_score args << "WITHSCORE" block = FloatifyPair end send_command(args, &block) end |
#zrem(key, member) ⇒ Boolean, Integer
Remove one or more members from a sorted set.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/redis/commands/sorted_sets.rb', line 107 def zrem(key, member) if member.is_a?(Array) members_to_remove = member return 0 if members_to_remove.empty? end send_command([:zrem, key, member]) do |reply| if member.is_a? Array # Variadic: return integer reply else # Single argument: return boolean Boolify.call(reply) end end end |
#zremrangebyrank(key, start, stop) ⇒ Integer
Remove all members in a sorted set within the given indexes.
521 522 523 |
# File 'lib/redis/commands/sorted_sets.rb', line 521 def zremrangebyrank(key, start, stop) send_command([:zremrangebyrank, key, start, stop]) end |
#zremrangebyscore(key, min, max) ⇒ Integer
Remove all members in a sorted set within the given scores.
691 692 693 |
# File 'lib/redis/commands/sorted_sets.rb', line 691 def zremrangebyscore(key, min, max) send_command([:zremrangebyscore, key, min, max]) end |
#zrevrange(key, start, stop, withscores: false, with_scores: withscores) ⇒ Object
Return a range of members in a sorted set, by index, with scores ordered from high to low.
444 445 446 447 448 449 450 451 452 453 |
# File 'lib/redis/commands/sorted_sets.rb', line 444 def zrevrange(key, start, stop, withscores: false, with_scores: withscores) args = [:zrevrange, key, Integer(start), Integer(stop)] if with_scores args << "WITHSCORES" block = FloatifyPairs end send_command(args, &block) end |
#zrevrangebylex(key, max, min, limit: nil) ⇒ Object
Return a range of members with the same score in a sorted set, by reversed lexicographical ordering. Apart from the reversed ordering, #zrevrangebylex is similar to #zrangebylex.
590 591 592 593 594 595 596 597 598 599 |
# File 'lib/redis/commands/sorted_sets.rb', line 590 def zrevrangebylex(key, max, min, limit: nil) args = [:zrevrangebylex, key, max, min] if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end send_command(args) end |
#zrevrangebyscore(key, max, min, withscores: false, with_scores: withscores, limit: nil) ⇒ Object
Return a range of members in a sorted set, by score, with scores ordered from high to low.
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 |
# File 'lib/redis/commands/sorted_sets.rb', line 658 def zrevrangebyscore(key, max, min, withscores: false, with_scores: withscores, limit: nil) args = [:zrevrangebyscore, key, max, min] if with_scores args << "WITHSCORES" block = FloatifyPairs end if limit args << "LIMIT" args.concat(limit.map { |l| Integer(l) }) end send_command(args, &block) end |
#zrevrank(key, member, withscore: false, with_score: withscore) ⇒ Integer, [Integer, Float]
Determine the index of a member in a sorted set, with scores ordered from high to low.
497 498 499 500 501 502 503 504 505 506 |
# File 'lib/redis/commands/sorted_sets.rb', line 497 def zrevrank(key, member, withscore: false, with_score: withscore) args = [:zrevrank, key, member] if with_score args << "WITHSCORE" block = FloatifyPair end send_command(args, &block) end |
#zscan(key, cursor, **options) ⇒ String, Array<[String, Float]>
Scan a sorted set
See the Redis Server ZSCAN documentation for further details
856 857 858 859 860 |
# File 'lib/redis/commands/sorted_sets.rb', line 856 def zscan(key, cursor, **) _scan(:zscan, cursor, [key], **) do |reply| [reply[0], FloatifyPairs.call(reply[1])] end end |
#zscan_each(key, **options, &block) ⇒ Enumerator
Scan a sorted set
See the Redis Server ZSCAN documentation for further details
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/redis/commands/sorted_sets.rb', line 875 def zscan_each(key, **, &block) return to_enum(:zscan_each, key, **) unless block_given? cursor = 0 loop do cursor, values = zscan(key, cursor, **) values.each(&block) break if cursor == "0" end end |
#zscore(key, member) ⇒ Float
Get the score associated with the given member in a sorted set.
287 288 289 |
# File 'lib/redis/commands/sorted_sets.rb', line 287 def zscore(key, member) send_command([:zscore, key, member], &Floatify) end |
#zunion(*args) ⇒ Array<String>, Array<[String, Float]>
Return the union of multiple sorted sets
778 779 780 |
# File 'lib/redis/commands/sorted_sets.rb', line 778 def zunion(*args) _zsets_operation(:zunion, *args) end |
#zunionstore(*args) ⇒ Integer
Add multiple sorted sets and store the resulting sorted set in a new key.
796 797 798 |
# File 'lib/redis/commands/sorted_sets.rb', line 796 def zunionstore(*args) _zsets_operation_store(:zunionstore, *args) end |