forked from redis/redis-rb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredis.rb
1148 lines (970 loc) · 23.9 KB
/
redis.rb
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
require "monitor"
class Redis
class ProtocolError < RuntimeError
def initialize(reply_type)
super(<<-EOS.gsub(/(?:^|\n)\s*/, " "))
Got '#{reply_type}' as initial reply byte.
If you're running in a multi-threaded environment, make sure you
pass the :thread_safe option when initializing the connection.
If you're in a forking environment, such as Unicorn, you need to
connect to Redis after forking.
EOS
end
end
module DisableThreadSafety
def synchronize
yield
end
end
def self.deprecate(message, trace = caller[0])
$stderr.puts "\n#{message} (in #{trace})"
end
attr :client
def self.connect(options = {})
options = options.dup
require "uri"
url = URI(options.delete(:url) || ENV["REDIS_URL"] || "redis://127.0.0.1:6379/0")
options[:host] ||= url.host
options[:port] ||= url.port
options[:password] ||= url.password
options[:db] ||= url.path[1..-1].to_i
new(options)
end
def self.current
Thread.current[:redis] ||= Redis.connect
end
def self.current=(redis)
Thread.current[:redis] = redis
end
include MonitorMixin
def initialize(options = {})
@client = Client.new(options)
if options[:thread_safe] == false
# Override #synchronize
extend DisableThreadSafety
else
# Monitor#initialize
super()
end
end
# Run code without the client reconnecting
def without_reconnect(&block)
synchronize do
@client.without_reconnect(&block)
end
end
# Authenticate to the server.
def auth(password)
synchronize do
@client.call [:auth, password]
end
end
# Change the selected database for the current connection.
def select(db)
synchronize do
@client.db = db
@client.call [:select, db]
end
end
# Get information and statistics about the server.
def info(cmd = nil)
synchronize do
reply = @client.call [:info, cmd].compact
if reply.kind_of?(String)
reply = Hash[*reply.split(/:|\r\n/).grep(/^[^#]/)]
if cmd && cmd.to_s == "commandstats"
# Extract nested hashes for INFO COMMANDSTATS
reply = Hash[reply.map do |k, v|
[k[/^cmdstat_(.*)$/, 1], Hash[*v.split(/,|=/)]]
end]
end
end
reply
end
end
def config(action, *args)
synchronize do
reply = @client.call [:config, action, *args]
if reply.kind_of?(Array) && action == :get
Hash[*reply]
else
reply
end
end
end
# Remove all keys from the current database.
def flushdb
synchronize do
@client.call [:flushdb]
end
end
# Remove all keys from all databases.
def flushall
synchronize do
@client.call [:flushall]
end
end
# Synchronously save the dataset to disk.
def save
synchronize do
@client.call [:save]
end
end
# Asynchronously save the dataset to disk.
def bgsave
synchronize do
@client.call [:bgsave]
end
end
# Asynchronously rewrite the append-only file.
def bgrewriteaof
synchronize do
@client.call [:bgrewriteaof]
end
end
# Get the value of a key.
def get(key)
synchronize do
@client.call [:get, key]
end
end
# Returns the bit value at offset in the string value stored at key.
def getbit(key, offset)
synchronize do
@client.call [:getbit, key, offset]
end
end
# Get a substring of the string stored at a key.
def getrange(key, start, stop)
synchronize do
@client.call [:getrange, key, start, stop]
end
end
# Set the string value of a key and return its old value.
def getset(key, value)
synchronize do
@client.call [:getset, key, value]
end
end
# Get the values of all the given keys.
def mget(*keys)
synchronize do
@client.call [:mget, *keys]
end
end
# Append a value to a key.
def append(key, value)
synchronize do
@client.call [:append, key, value]
end
end
def substr(key, start, stop)
synchronize do
@client.call [:substr, key, start, stop]
end
end
# Get the length of the value stored in a key.
def strlen(key)
synchronize do
@client.call [:strlen, key]
end
end
# Get all the fields and values in a hash.
def hgetall(key)
synchronize do
reply = @client.call [:hgetall, key]
if reply.kind_of?(Array)
Hash[*reply]
else
reply
end
end
end
# Get the value of a hash field.
def hget(key, field)
synchronize do
@client.call [:hget, key, field]
end
end
# Delete a hash field.
def hdel(key, field)
synchronize do
@client.call [:hdel, key, field]
end
end
# Get all the fields in a hash.
def hkeys(key)
synchronize do
@client.call [:hkeys, key]
end
end
# Find all keys matching the given pattern.
def keys(pattern = "*")
synchronize do
reply = @client.call [:keys, pattern]
if reply.kind_of?(String)
reply.split(" ")
else
reply
end
end
end
# Return a random key from the keyspace.
def randomkey
synchronize do
@client.call [:randomkey]
end
end
# Echo the given string.
def echo(value)
synchronize do
@client.call [:echo, value]
end
end
# Ping the server.
def ping
synchronize do
@client.call [:ping]
end
end
# Get the UNIX time stamp of the last successful save to disk.
def lastsave
synchronize do
@client.call [:lastsave]
end
end
# Return the number of keys in the selected database.
def dbsize
synchronize do
@client.call [:dbsize]
end
end
# Determine if a key exists.
def exists(key)
synchronize do
_bool @client.call [:exists, key]
end
end
# Get the length of a list.
def llen(key)
synchronize do
@client.call [:llen, key]
end
end
# Get a range of elements from a list.
def lrange(key, start, stop)
synchronize do
@client.call [:lrange, key, start, stop]
end
end
# Trim a list to the specified range.
def ltrim(key, start, stop)
synchronize do
@client.call [:ltrim, key, start, stop]
end
end
# Get an element from a list by its index.
def lindex(key, index)
synchronize do
@client.call [:lindex, key, index]
end
end
# Insert an element before or after another element in a list.
def linsert(key, where, pivot, value)
synchronize do
@client.call [:linsert, key, where, pivot, value]
end
end
# Set the value of an element in a list by its index.
def lset(key, index, value)
synchronize do
@client.call [:lset, key, index, value]
end
end
# Remove elements from a list.
def lrem(key, count, value)
synchronize do
@client.call [:lrem, key, count, value]
end
end
# Append a value to a list.
def rpush(key, value)
synchronize do
@client.call [:rpush, key, value]
end
end
# Append a value to a list, only if the list exists.
def rpushx(key, value)
synchronize do
@client.call [:rpushx, key, value]
end
end
# Prepend a value to a list.
def lpush(key, value)
synchronize do
@client.call [:lpush, key, value]
end
end
# Prepend a value to a list, only if the list exists.
def lpushx(key, value)
synchronize do
@client.call [:lpushx, key, value]
end
end
# Remove and get the last element in a list.
def rpop(key)
synchronize do
@client.call [:rpop, key]
end
end
# Remove and get the first element in a list, or block until one is available.
def blpop(*args)
synchronize do
@client.call_without_timeout(:blpop, *args)
end
end
# Remove and get the last element in a list, or block until one is available.
def brpop(*args)
synchronize do
@client.call_without_timeout(:brpop, *args)
end
end
# Pop a value from a list, push it to another list and return it; or block
# until one is available.
def brpoplpush(source, destination, timeout)
synchronize do
@client.call_without_timeout(:brpoplpush, source, destination, timeout)
end
end
# Remove the last element in a list, append it to another list and return it.
def rpoplpush(source, destination)
synchronize do
@client.call [:rpoplpush, source, destination]
end
end
# Remove and get the first element in a list.
def lpop(key)
synchronize do
@client.call [:lpop, key]
end
end
# Get all the members in a set.
def smembers(key)
synchronize do
@client.call [:smembers, key]
end
end
# Determine if a given value is a member of a set.
def sismember(key, member)
synchronize do
_bool @client.call [:sismember, key, member]
end
end
# Add a member to a set.
def sadd(key, value)
synchronize do
_bool @client.call [:sadd, key, value]
end
end
# Remove a member from a set.
def srem(key, value)
synchronize do
_bool @client.call [:srem, key, value]
end
end
# Move a member from one set to another.
def smove(source, destination, member)
synchronize do
_bool @client.call [:smove, source, destination, member]
end
end
# Remove and return a random member from a set.
def spop(key)
synchronize do
@client.call [:spop, key]
end
end
# Get the number of members in a set.
def scard(key)
synchronize do
@client.call [:scard, key]
end
end
# Intersect multiple sets.
def sinter(*keys)
synchronize do
@client.call [:sinter, *keys]
end
end
# Intersect multiple sets and store the resulting set in a key.
def sinterstore(destination, *keys)
synchronize do
@client.call [:sinterstore, destination, *keys]
end
end
# Add multiple sets.
def sunion(*keys)
synchronize do
@client.call [:sunion, *keys]
end
end
# Add multiple sets and store the resulting set in a key.
def sunionstore(destination, *keys)
synchronize do
@client.call [:sunionstore, destination, *keys]
end
end
# Subtract multiple sets.
def sdiff(*keys)
synchronize do
@client.call [:sdiff, *keys]
end
end
# Subtract multiple sets and store the resulting set in a key.
def sdiffstore(destination, *keys)
synchronize do
@client.call [:sdiffstore, destination, *keys]
end
end
# Get a random member from a set.
def srandmember(key)
synchronize do
@client.call [:srandmember, key]
end
end
# Add a member to a sorted set, or update its score if it already exists.
def zadd(key, score, member)
synchronize do
_bool @client.call [:zadd, key, score, member]
end
end
# Determine the index of a member in a sorted set.
def zrank(key, member)
synchronize do
@client.call [:zrank, key, member]
end
end
# Determine the index of a member in a sorted set, with scores ordered from
# high to low.
def zrevrank(key, member)
synchronize do
@client.call [:zrevrank, key, member]
end
end
# Increment the score of a member in a sorted set.
def zincrby(key, increment, member)
synchronize do
@client.call [:zincrby, key, increment, member]
end
end
# Get the number of members in a sorted set.
def zcard(key)
synchronize do
@client.call [:zcard, key]
end
end
# Return a range of members in a sorted set, by index.
def zrange(key, start, stop, options = {})
command = CommandOptions.new(options) do |c|
c.bool :withscores
c.bool :with_scores
end
synchronize do
@client.call [:zrange, key, start, stop, *command.to_a]
end
end
# Return a range of members in a sorted set, by score.
def zrangebyscore(key, min, max, options = {})
command = CommandOptions.new(options) do |c|
c.splat :limit
c.bool :withscores
c.bool :with_scores
end
synchronize do
@client.call [:zrangebyscore, key, min, max, *command.to_a]
end
end
# Count the members in a sorted set with scores within the given values.
def zcount(key, start, stop)
synchronize do
@client.call [:zcount, key, start, stop]
end
end
# Return a range of members in a sorted set, by index, with scores ordered
# from high to low.
def zrevrange(key, start, stop, options = {})
command = CommandOptions.new(options) do |c|
c.bool :withscores
c.bool :with_scores
end
synchronize do
@client.call [:zrevrange, key, start, stop, *command.to_a]
end
end
# Return a range of members in a sorted set, by score, with scores ordered
# from high to low.
def zrevrangebyscore(key, max, min, options = {})
command = CommandOptions.new(options) do |c|
c.splat :limit
c.bool :withscores
c.bool :with_scores
end
synchronize do
@client.call [:zrevrangebyscore, key, max, min, *command.to_a]
end
end
# Remove all members in a sorted set within the given scores.
def zremrangebyscore(key, min, max)
synchronize do
@client.call [:zremrangebyscore, key, min, max]
end
end
# Remove all members in a sorted set within the given indexes.
def zremrangebyrank(key, start, stop)
synchronize do
@client.call [:zremrangebyrank, key, start, stop]
end
end
# Get the score associated with the given member in a sorted set.
def zscore(key, member)
synchronize do
@client.call [:zscore, key, member]
end
end
# Remove a member from a sorted set.
def zrem(key, member)
synchronize do
_bool @client.call [:zrem, key, member]
end
end
# Intersect multiple sorted sets and store the resulting sorted set in a new
# key.
def zinterstore(destination, keys, options = {})
command = CommandOptions.new(options) do |c|
c.splat :weights
c.value :aggregate
end
synchronize do
@client.call [:zinterstore, destination, keys.size, *(keys + command.to_a)]
end
end
# Add multiple sorted sets and store the resulting sorted set in a new key.
def zunionstore(destination, keys, options = {})
command = CommandOptions.new(options) do |c|
c.splat :weights
c.value :aggregate
end
synchronize do
@client.call [:zunionstore, destination, keys.size, *(keys + command.to_a)]
end
end
# Move a key to another database.
def move(key, db)
synchronize do
_bool @client.call [:move, key, db]
end
end
# Set the value of a key, only if the key does not exist.
def setnx(key, value)
synchronize do
_bool @client.call [:setnx, key, value]
end
end
# Delete a key.
def del(*keys)
synchronize do
@client.call [:del, *keys]
end
end
# Rename a key.
def rename(old_name, new_name)
synchronize do
@client.call [:rename, old_name, new_name]
end
end
# Rename a key, only if the new key does not exist.
def renamenx(old_name, new_name)
synchronize do
_bool @client.call [:renamenx, old_name, new_name]
end
end
# Set a key's time to live in seconds.
def expire(key, seconds)
synchronize do
_bool @client.call [:expire, key, seconds]
end
end
# Remove the expiration from a key.
def persist(key)
synchronize do
_bool @client.call [:persist, key]
end
end
# Get the time to live for a key.
def ttl(key)
synchronize do
@client.call [:ttl, key]
end
end
# Set the expiration for a key as a UNIX timestamp.
def expireat(key, unix_time)
synchronize do
_bool @client.call [:expireat, key, unix_time]
end
end
# Set the string value of a hash field.
def hset(key, field, value)
synchronize do
_bool @client.call [:hset, key, field, value]
end
end
# Set the value of a hash field, only if the field does not exist.
def hsetnx(key, field, value)
synchronize do
_bool @client.call [:hsetnx, key, field, value]
end
end
# Set multiple hash fields to multiple values.
def hmset(key, *attrs)
synchronize do
@client.call [:hmset, key, *attrs]
end
end
def mapped_hmset(key, hash)
hmset(key, *hash.to_a.flatten)
end
# Get the values of all the given hash fields.
def hmget(key, *fields)
synchronize do
@client.call [:hmget, key, *fields]
end
end
def mapped_hmget(key, *fields)
reply = hmget(key, *fields)
if reply.kind_of?(Array)
Hash[*fields.zip(reply).flatten]
else
reply
end
end
# Get the number of fields in a hash.
def hlen(key)
synchronize do
@client.call [:hlen, key]
end
end
# Get all the values in a hash.
def hvals(key)
synchronize do
@client.call [:hvals, key]
end
end
# Increment the integer value of a hash field by the given number.
def hincrby(key, field, increment)
synchronize do
@client.call [:hincrby, key, field, increment]
end
end
# Discard all commands issued after MULTI.
def discard
synchronize do
@client.call [:discard]
end
end
# Determine if a hash field exists.
def hexists(key, field)
synchronize do
_bool @client.call [:hexists, key, field]
end
end
# Listen for all requests received by the server in real time.
def monitor(&block)
synchronize do
@client.call_loop([:monitor], &block)
end
end
def debug(*args)
synchronize do
@client.call [:debug, *args]
end
end
def object(*args)
synchronize do
@client.call [:object, *args]
end
end
# Internal command used for replication.
def sync
synchronize do
@client.call [:sync]
end
end
def [](key)
get(key)
end
def []=(key,value)
set(key, value)
end
# Set the string value of a key.
def set(key, value)
synchronize do
@client.call [:set, key, value]
end
end
# Sets or clears the bit at offset in the string value stored at key.
def setbit(key, offset, value)
synchronize do
@client.call [:setbit, key, offset, value]
end
end
# Set the value and expiration of a key.
def setex(key, ttl, value)
synchronize do
@client.call [:setex, key, ttl, value]
end
end
# Overwrite part of a string at key starting at the specified offset.
def setrange(key, offset, value)
synchronize do
@client.call [:setrange, key, offset, value]
end
end
# Set multiple keys to multiple values.
def mset(*args)
synchronize do
@client.call [:mset, *args]
end
end
def mapped_mset(hash)
mset(*hash.to_a.flatten)
end
# Set multiple keys to multiple values, only if none of the keys exist.
def msetnx(*args)
synchronize do
@client.call [:msetnx, *args]
end
end
def mapped_msetnx(hash)
msetnx(*hash.to_a.flatten)
end
def mapped_mget(*keys)
reply = mget(*keys)
if reply.kind_of?(Array)
Hash[*keys.zip(reply).flatten]
else
reply
end
end
# Sort the elements in a list, set or sorted set.
def sort(key, options = {})
command = CommandOptions.new(options) do |c|
c.value :by
c.splat :limit
c.multi :get
c.words :order
c.value :store
end
synchronize do
@client.call [:sort, key, *command.to_a]
end
end
# Increment the integer value of a key by one.
def incr(key)
synchronize do
@client.call [:incr, key]
end
end
# Increment the integer value of a key by the given number.
def incrby(key, increment)
synchronize do
@client.call [:incrby, key, increment]
end
end
# Decrement the integer value of a key by one.
def decr(key)
synchronize do
@client.call [:decr, key]
end
end
# Decrement the integer value of a key by the given number.
def decrby(key, decrement)
synchronize do
@client.call [:decrby, key, decrement]
end
end
# Determine the type stored at key.
def type(key)
synchronize do
@client.call [:type, key]
end
end
# Close the connection.
def quit
synchronize do
begin
@client.call [:quit]
rescue Errno::ECONNRESET
ensure
@client.disconnect
end
end
end
# Synchronously save the dataset to disk and then shut down the server.
def shutdown
synchronize do
@client.call_without_reply [:shutdown]
end
end
# Make the server a slave of another instance, or promote it as master.
def slaveof(host, port)
synchronize do
@client.call [:slaveof, host, port]
end
end
def pipelined(options = {})
synchronize do
begin
original, @client = @client, Pipeline.new
yield
original.call_pipelined(@client.commands, options) unless @client.commands.empty?
ensure
@client = original
end
end
end
# Watch the given keys to determine execution of the MULTI/EXEC block.
def watch(*keys)
synchronize do
@client.call [:watch, *keys]
end
end
# Forget about all watched keys.
def unwatch
synchronize do
@client.call [:unwatch]
end
end
# Execute all commands issued after MULTI.