ruby-redis 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,196 @@
1
+ require 'eventmachine'
2
+ %w{reader sender}.each do |file|
3
+ require File.expand_path file, File.dirname(__FILE__)
4
+ end
5
+
6
+ module Redis
7
+ class Client < EventMachine::Connection
8
+
9
+ include Sender
10
+
11
+ class Command
12
+ include EventMachine::Deferrable
13
+ # EventMachine::Deferrable older than 1.0.0.beta.4 doesn't return self
14
+ # EventMachine::Completion doesn't return self in any version
15
+ test = self.new
16
+ unless self === test.callback{}
17
+ def callback; super; self; end
18
+ def errback; super; self; end
19
+ end
20
+ end
21
+
22
+ def initialize *ignore_args
23
+ if defined? Hiredis and defined? Hiredis::Reader
24
+ @reader = Hiredis::Reader.new
25
+ else
26
+ @reader = Reader.new
27
+ end
28
+ @queue = []
29
+ @multi = nil
30
+ @pubsub_callback = proc{}
31
+ end
32
+
33
+ def unbind
34
+ until @queue.empty?
35
+ @queue.shift.fail RuntimeError.new 'connection closed'
36
+ end
37
+ end
38
+
39
+ # This is simple and fast but doesn't test for programming errors.
40
+ # Don't send non-pubsub commands while subscribed and you're fine.
41
+ # Subclass Client and/or create a defensive layer if you need to.
42
+ def on_pubsub &block
43
+ @pubsub_callback = block
44
+ end
45
+
46
+ def receive_data data
47
+ @reader.feed data
48
+ until (
49
+ begin
50
+ data = @reader.gets
51
+ rescue Exception => e
52
+ raise e if Interrupt === e
53
+ @queue.shift.fail e unless @queue.empty?
54
+ close_connection
55
+ data = false
56
+ end
57
+ ) == false
58
+ deferrable = @queue.shift
59
+ if deferrable
60
+ if Exception === data
61
+ deferrable.fail data
62
+ else
63
+ deferrable.succeed data
64
+ end
65
+ else
66
+ @pubsub_callback.call data
67
+ end
68
+ end
69
+ end
70
+
71
+ def method_missing method, *args, &block
72
+ if @multi and ![:multi, :exec].include? method
73
+ for_queue = new_command true, false, method, *args
74
+ command = new_command false, true, method
75
+ callback_multi = @multi
76
+ for_queue.callback do |status|
77
+ callback_multi << command
78
+ end
79
+ for_queue.errback do |err|
80
+ callback_multi << err
81
+ command.fail err
82
+ end
83
+ else
84
+ command = new_command true, true, method, *args
85
+ end
86
+ command.callback &block if block
87
+ command
88
+ end
89
+
90
+ def in_multi?
91
+ !!@multi
92
+ end
93
+
94
+ def multi *args
95
+ @multi ||= []
96
+ method_missing :multi, *args
97
+ end
98
+
99
+ def exec *args
100
+ redis_exec = method_missing :exec, *args
101
+ callback_multi = @multi
102
+ @multi = nil
103
+ redis_exec.callback do |results|
104
+ if results
105
+ normalized_results = []
106
+ callback_multi.each do |command|
107
+ if Exception === command
108
+ normalized_results << command
109
+ else
110
+ result = results.shift
111
+ normalized_results << result
112
+ if Exception === result
113
+ command.fail result
114
+ else
115
+ command.succeed result
116
+ end
117
+ end
118
+ end
119
+ redis_exec.succeed normalized_results
120
+ end
121
+ end
122
+ end
123
+
124
+ # Some data is best transformed into a Ruby type. You can set up global
125
+ # transforms here that are automatically attached to command callbacks.
126
+ # Redis::Client.transforms[:mycustom1] = Redis::Client.transforms[:exists] # boolean
127
+ # Redis::Client.transforms[:mycustom2] = proc { |data| MyType.new data }
128
+ # Redis::Client.transforms.delete :hgetall # if you prefer the array
129
+ def self.transforms
130
+ @@transforms ||= lambda {
131
+ boolean = lambda { |tf| tf[0] == 1 ? true : false }
132
+ hash = lambda { |hash| Hash[*hash] }
133
+ pubsub = lambda { |msg| lambda { msg } }
134
+ {
135
+ #pubsub
136
+ :subscribe => pubsub,
137
+ :psubscribe => pubsub,
138
+ :unsubscribe => pubsub,
139
+ :punsubscribe => pubsub,
140
+ #keys
141
+ :exists => boolean,
142
+ :expire => boolean,
143
+ :expireat => boolean,
144
+ :move => boolean,
145
+ :persist => boolean,
146
+ :renamenx => boolean,
147
+ #strings
148
+ :msetnx => boolean,
149
+ :setnx => boolean,
150
+ #hashes
151
+ :hexists => boolean,
152
+ :hgetall => hash,
153
+ :hset => boolean,
154
+ :hsetnx => boolean,
155
+ #sets
156
+ :sismember => boolean,
157
+ :smove => boolean,
158
+ :srem => boolean,
159
+ #zsets
160
+ :zrem => boolean,
161
+ }
162
+ }.call
163
+ end
164
+
165
+ private
166
+
167
+ def new_command do_send, do_transform, method, *args
168
+ command = Command.new
169
+ if do_send
170
+ send_redis args.reduce([method]){ |arr, arg|
171
+ if Hash === arg
172
+ arr += arg.to_a.flatten 1
173
+ else
174
+ arr << arg
175
+ end
176
+ }
177
+ @queue.push command
178
+ end
179
+ if do_transform
180
+ if transform = self.class.transforms[method]
181
+ command.callback do |data|
182
+ result = transform.call data
183
+ if Proc === result
184
+ command.succeed nil
185
+ @pubsub_callback.call result.call
186
+ else
187
+ command.succeed result
188
+ end
189
+ end
190
+ end
191
+ end
192
+ command
193
+ end
194
+
195
+ end
196
+ end
@@ -0,0 +1,3983 @@
1
+ !RBIX
2
+ 6235178746665710376
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 51
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 7
23
+ 2
24
+ 64
25
+ 7
26
+ 3
27
+ 64
28
+ 35
29
+ 2
30
+ 56
31
+ 4
32
+ 50
33
+ 5
34
+ 0
35
+ 15
36
+ 99
37
+ 7
38
+ 6
39
+ 65
40
+ 49
41
+ 7
42
+ 2
43
+ 13
44
+ 99
45
+ 12
46
+ 7
47
+ 8
48
+ 12
49
+ 7
50
+ 9
51
+ 12
52
+ 65
53
+ 12
54
+ 49
55
+ 10
56
+ 4
57
+ 15
58
+ 49
59
+ 8
60
+ 0
61
+ 15
62
+ 2
63
+ 11
64
+ I
65
+ 6
66
+ I
67
+ 0
68
+ I
69
+ 0
70
+ I
71
+ 0
72
+ n
73
+ p
74
+ 11
75
+ s
76
+ 12
77
+ eventmachine
78
+ x
79
+ 7
80
+ require
81
+ s
82
+ 6
83
+ reader
84
+ s
85
+ 6
86
+ sender
87
+ M
88
+ 1
89
+ p
90
+ 2
91
+ x
92
+ 9
93
+ for_block
94
+ t
95
+ n
96
+ x
97
+ 9
98
+ __block__
99
+ i
100
+ 28
101
+ 57
102
+ 19
103
+ 0
104
+ 15
105
+ 5
106
+ 45
107
+ 0
108
+ 1
109
+ 20
110
+ 0
111
+ 45
112
+ 0
113
+ 2
114
+ 65
115
+ 49
116
+ 3
117
+ 0
118
+ 49
119
+ 4
120
+ 1
121
+ 49
122
+ 5
123
+ 2
124
+ 47
125
+ 49
126
+ 6
127
+ 1
128
+ 11
129
+ I
130
+ 7
131
+ I
132
+ 1
133
+ I
134
+ 1
135
+ I
136
+ 1
137
+ n
138
+ p
139
+ 7
140
+ x
141
+ 4
142
+ File
143
+ n
144
+ n
145
+ x
146
+ 11
147
+ active_path
148
+ x
149
+ 7
150
+ dirname
151
+ x
152
+ 11
153
+ expand_path
154
+ x
155
+ 7
156
+ require
157
+ p
158
+ 5
159
+ I
160
+ 0
161
+ I
162
+ 2
163
+ I
164
+ 4
165
+ I
166
+ 3
167
+ I
168
+ 1c
169
+ x
170
+ 52
171
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
172
+ p
173
+ 1
174
+ x
175
+ 4
176
+ file
177
+ x
178
+ 4
179
+ each
180
+ x
181
+ 5
182
+ Redis
183
+ x
184
+ 11
185
+ open_module
186
+ x
187
+ 15
188
+ __module_init__
189
+ M
190
+ 1
191
+ n
192
+ n
193
+ x
194
+ 5
195
+ Redis
196
+ i
197
+ 33
198
+ 5
199
+ 66
200
+ 99
201
+ 7
202
+ 0
203
+ 45
204
+ 1
205
+ 2
206
+ 43
207
+ 3
208
+ 65
209
+ 49
210
+ 4
211
+ 3
212
+ 13
213
+ 99
214
+ 12
215
+ 7
216
+ 5
217
+ 12
218
+ 7
219
+ 6
220
+ 12
221
+ 65
222
+ 12
223
+ 49
224
+ 7
225
+ 4
226
+ 15
227
+ 49
228
+ 5
229
+ 0
230
+ 11
231
+ I
232
+ 6
233
+ I
234
+ 0
235
+ I
236
+ 0
237
+ I
238
+ 0
239
+ n
240
+ p
241
+ 8
242
+ x
243
+ 6
244
+ Client
245
+ x
246
+ 12
247
+ EventMachine
248
+ n
249
+ x
250
+ 10
251
+ Connection
252
+ x
253
+ 10
254
+ open_class
255
+ x
256
+ 14
257
+ __class_init__
258
+ M
259
+ 1
260
+ n
261
+ n
262
+ x
263
+ 6
264
+ Client
265
+ i
266
+ 179
267
+ 5
268
+ 66
269
+ 5
270
+ 45
271
+ 0
272
+ 1
273
+ 47
274
+ 49
275
+ 2
276
+ 1
277
+ 15
278
+ 99
279
+ 7
280
+ 3
281
+ 1
282
+ 65
283
+ 49
284
+ 4
285
+ 3
286
+ 13
287
+ 99
288
+ 12
289
+ 7
290
+ 5
291
+ 12
292
+ 7
293
+ 6
294
+ 12
295
+ 65
296
+ 12
297
+ 49
298
+ 7
299
+ 4
300
+ 15
301
+ 49
302
+ 5
303
+ 0
304
+ 15
305
+ 99
306
+ 7
307
+ 8
308
+ 7
309
+ 9
310
+ 65
311
+ 67
312
+ 49
313
+ 10
314
+ 0
315
+ 49
316
+ 11
317
+ 4
318
+ 15
319
+ 99
320
+ 7
321
+ 12
322
+ 7
323
+ 13
324
+ 65
325
+ 67
326
+ 49
327
+ 10
328
+ 0
329
+ 49
330
+ 11
331
+ 4
332
+ 15
333
+ 99
334
+ 7
335
+ 14
336
+ 7
337
+ 15
338
+ 65
339
+ 67
340
+ 49
341
+ 10
342
+ 0
343
+ 49
344
+ 11
345
+ 4
346
+ 15
347
+ 99
348
+ 7
349
+ 16
350
+ 7
351
+ 17
352
+ 65
353
+ 67
354
+ 49
355
+ 10
356
+ 0
357
+ 49
358
+ 11
359
+ 4
360
+ 15
361
+ 99
362
+ 7
363
+ 18
364
+ 7
365
+ 19
366
+ 65
367
+ 67
368
+ 49
369
+ 10
370
+ 0
371
+ 49
372
+ 11
373
+ 4
374
+ 15
375
+ 99
376
+ 7
377
+ 20
378
+ 7
379
+ 21
380
+ 65
381
+ 67
382
+ 49
383
+ 10
384
+ 0
385
+ 49
386
+ 11
387
+ 4
388
+ 15
389
+ 99
390
+ 7
391
+ 22
392
+ 7
393
+ 23
394
+ 65
395
+ 67
396
+ 49
397
+ 10
398
+ 0
399
+ 49
400
+ 11
401
+ 4
402
+ 15
403
+ 99
404
+ 7
405
+ 24
406
+ 7
407
+ 25
408
+ 65
409
+ 67
410
+ 49
411
+ 10
412
+ 0
413
+ 49
414
+ 11
415
+ 4
416
+ 15
417
+ 99
418
+ 7
419
+ 26
420
+ 7
421
+ 27
422
+ 65
423
+ 5
424
+ 49
425
+ 7
426
+ 4
427
+ 15
428
+ 5
429
+ 48
430
+ 28
431
+ 15
432
+ 99
433
+ 7
434
+ 29
435
+ 7
436
+ 30
437
+ 65
438
+ 67
439
+ 49
440
+ 10
441
+ 0
442
+ 49
443
+ 11
444
+ 4
445
+ 11
446
+ I
447
+ 6
448
+ I
449
+ 0
450
+ I
451
+ 0
452
+ I
453
+ 0
454
+ n
455
+ p
456
+ 31
457
+ x
458
+ 6
459
+ Sender
460
+ n
461
+ x
462
+ 7
463
+ include
464
+ x
465
+ 7
466
+ Command
467
+ x
468
+ 10
469
+ open_class
470
+ x
471
+ 14
472
+ __class_init__
473
+ M
474
+ 1
475
+ n
476
+ n
477
+ x
478
+ 7
479
+ Command
480
+ i
481
+ 105
482
+ 5
483
+ 66
484
+ 5
485
+ 45
486
+ 0
487
+ 1
488
+ 43
489
+ 2
490
+ 47
491
+ 49
492
+ 3
493
+ 1
494
+ 15
495
+ 99
496
+ 7
497
+ 4
498
+ 7
499
+ 5
500
+ 65
501
+ 67
502
+ 49
503
+ 6
504
+ 0
505
+ 49
506
+ 7
507
+ 4
508
+ 15
509
+ 5
510
+ 7
511
+ 8
512
+ 47
513
+ 49
514
+ 9
515
+ 1
516
+ 15
517
+ 5
518
+ 13
519
+ 71
520
+ 10
521
+ 47
522
+ 9
523
+ 55
524
+ 47
525
+ 49
526
+ 11
527
+ 0
528
+ 13
529
+ 1
530
+ 47
531
+ 49
532
+ 4
533
+ 1
534
+ 15
535
+ 8
536
+ 59
537
+ 1
538
+ 49
539
+ 10
540
+ 1
541
+ 19
542
+ 0
543
+ 15
544
+ 5
545
+ 20
546
+ 0
547
+ 56
548
+ 12
549
+ 50
550
+ 13
551
+ 0
552
+ 86
553
+ 14
554
+ 9
555
+ 77
556
+ 1
557
+ 8
558
+ 104
559
+ 99
560
+ 7
561
+ 13
562
+ 7
563
+ 15
564
+ 65
565
+ 67
566
+ 49
567
+ 6
568
+ 0
569
+ 49
570
+ 7
571
+ 4
572
+ 15
573
+ 99
574
+ 7
575
+ 16
576
+ 7
577
+ 17
578
+ 65
579
+ 67
580
+ 49
581
+ 6
582
+ 0
583
+ 49
584
+ 7
585
+ 4
586
+ 11
587
+ I
588
+ 6
589
+ I
590
+ 1
591
+ I
592
+ 0
593
+ I
594
+ 0
595
+ n
596
+ p
597
+ 18
598
+ x
599
+ 12
600
+ EventMachine
601
+ n
602
+ x
603
+ 10
604
+ Deferrable
605
+ x
606
+ 7
607
+ include
608
+ x
609
+ 10
610
+ initialize
611
+ M
612
+ 1
613
+ n
614
+ n
615
+ x
616
+ 10
617
+ initialize
618
+ i
619
+ 5
620
+ 20
621
+ 0
622
+ 38
623
+ 0
624
+ 11
625
+ I
626
+ 2
627
+ I
628
+ 1
629
+ I
630
+ 1
631
+ I
632
+ 1
633
+ n
634
+ p
635
+ 1
636
+ x
637
+ 11
638
+ @connection
639
+ p
640
+ 5
641
+ I
642
+ -1
643
+ I
644
+ f
645
+ I
646
+ 0
647
+ I
648
+ 10
649
+ I
650
+ 5
651
+ x
652
+ 52
653
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
654
+ p
655
+ 1
656
+ x
657
+ 10
658
+ connection
659
+ x
660
+ 17
661
+ method_visibility
662
+ x
663
+ 15
664
+ add_defn_method
665
+ x
666
+ 7
667
+ timeout
668
+ x
669
+ 12
670
+ undef_method
671
+ x
672
+ 3
673
+ new
674
+ x
675
+ 8
676
+ allocate
677
+ M
678
+ 1
679
+ p
680
+ 2
681
+ x
682
+ 9
683
+ for_block
684
+ t
685
+ n
686
+ x
687
+ 7
688
+ Command
689
+ i
690
+ 2
691
+ 1
692
+ 11
693
+ I
694
+ 2
695
+ I
696
+ 0
697
+ I
698
+ 0
699
+ I
700
+ 0
701
+ I
702
+ -2
703
+ p
704
+ 0
705
+ p
706
+ 3
707
+ I
708
+ 0
709
+ I
710
+ 17
711
+ I
712
+ 2
713
+ x
714
+ 52
715
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
716
+ p
717
+ 0
718
+ x
719
+ 8
720
+ callback
721
+ x
722
+ 3
723
+ ===
724
+ M
725
+ 1
726
+ n
727
+ n
728
+ x
729
+ 8
730
+ callback
731
+ i
732
+ 6
733
+ 54
734
+ 89
735
+ 0
736
+ 15
737
+ 5
738
+ 11
739
+ I
740
+ 1
741
+ I
742
+ 0
743
+ I
744
+ 0
745
+ I
746
+ 0
747
+ n
748
+ p
749
+ 1
750
+ x
751
+ 8
752
+ callback
753
+ p
754
+ 3
755
+ I
756
+ -1
757
+ I
758
+ 18
759
+ I
760
+ 6
761
+ x
762
+ 52
763
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
764
+ p
765
+ 0
766
+ x
767
+ 7
768
+ errback
769
+ M
770
+ 1
771
+ n
772
+ n
773
+ x
774
+ 7
775
+ errback
776
+ i
777
+ 6
778
+ 54
779
+ 89
780
+ 0
781
+ 15
782
+ 5
783
+ 11
784
+ I
785
+ 1
786
+ I
787
+ 0
788
+ I
789
+ 0
790
+ I
791
+ 0
792
+ n
793
+ p
794
+ 1
795
+ x
796
+ 7
797
+ errback
798
+ p
799
+ 3
800
+ I
801
+ -1
802
+ I
803
+ 19
804
+ I
805
+ 6
806
+ x
807
+ 52
808
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
809
+ p
810
+ 0
811
+ p
812
+ 17
813
+ I
814
+ 2
815
+ I
816
+ d
817
+ I
818
+ d
819
+ I
820
+ f
821
+ I
822
+ 1b
823
+ I
824
+ 13
825
+ I
826
+ 23
827
+ I
828
+ 16
829
+ I
830
+ 3e
831
+ I
832
+ 17
833
+ I
834
+ 4d
835
+ I
836
+ 18
837
+ I
838
+ 5b
839
+ I
840
+ 19
841
+ I
842
+ 68
843
+ I
844
+ 0
845
+ I
846
+ 69
847
+ x
848
+ 52
849
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
850
+ p
851
+ 1
852
+ x
853
+ 4
854
+ test
855
+ x
856
+ 13
857
+ attach_method
858
+ x
859
+ 10
860
+ initialize
861
+ M
862
+ 1
863
+ n
864
+ n
865
+ x
866
+ 10
867
+ initialize
868
+ i
869
+ 154
870
+ 23
871
+ 0
872
+ 10
873
+ 14
874
+ 44
875
+ 43
876
+ 0
877
+ 78
878
+ 49
879
+ 1
880
+ 1
881
+ 19
882
+ 0
883
+ 15
884
+ 26
885
+ 93
886
+ 0
887
+ 15
888
+ 29
889
+ 29
890
+ 0
891
+ 7
892
+ 2
893
+ 98
894
+ 3
895
+ 1
896
+ 30
897
+ 8
898
+ 35
899
+ 25
900
+ 92
901
+ 0
902
+ 27
903
+ 8
904
+ 40
905
+ 15
906
+ 7
907
+ 4
908
+ 8
909
+ 41
910
+ 1
911
+ 13
912
+ 9
913
+ 76
914
+ 15
915
+ 26
916
+ 93
917
+ 1
918
+ 15
919
+ 29
920
+ 64
921
+ 0
922
+ 45
923
+ 2
924
+ 5
925
+ 7
926
+ 6
927
+ 3
928
+ 98
929
+ 7
930
+ 3
931
+ 30
932
+ 8
933
+ 70
934
+ 25
935
+ 92
936
+ 1
937
+ 27
938
+ 8
939
+ 75
940
+ 15
941
+ 7
942
+ 4
943
+ 8
944
+ 76
945
+ 1
946
+ 9
947
+ 108
948
+ 45
949
+ 2
950
+ 8
951
+ 43
952
+ 6
953
+ 13
954
+ 71
955
+ 9
956
+ 47
957
+ 9
958
+ 101
959
+ 47
960
+ 49
961
+ 10
962
+ 0
963
+ 13
964
+ 47
965
+ 49
966
+ 11
967
+ 0
968
+ 15
969
+ 8
970
+ 104
971
+ 49
972
+ 9
973
+ 0
974
+ 38
975
+ 12
976
+ 8
977
+ 134
978
+ 45
979
+ 6
980
+ 13
981
+ 13
982
+ 71
983
+ 9
984
+ 47
985
+ 9
986
+ 129
987
+ 47
988
+ 49
989
+ 10
990
+ 0
991
+ 13
992
+ 47
993
+ 49
994
+ 11
995
+ 0
996
+ 15
997
+ 8
998
+ 132
999
+ 49
1000
+ 9
1001
+ 0
1002
+ 38
1003
+ 12
1004
+ 15
1005
+ 35
1006
+ 0
1007
+ 38
1008
+ 14
1009
+ 15
1010
+ 1
1011
+ 38
1012
+ 15
1013
+ 15
1014
+ 5
1015
+ 56
1016
+ 16
1017
+ 47
1018
+ 50
1019
+ 17
1020
+ 0
1021
+ 38
1022
+ 18
1023
+ 11
1024
+ I
1025
+ 6
1026
+ I
1027
+ 1
1028
+ I
1029
+ 0
1030
+ I
1031
+ 1
1032
+ n
1033
+ p
1034
+ 19
1035
+ x
1036
+ 4
1037
+ Hash
1038
+ x
1039
+ 16
1040
+ new_from_literal
1041
+ x
1042
+ 7
1043
+ Hiredis
1044
+ x
1045
+ 16
1046
+ vm_const_defined
1047
+ s
1048
+ 8
1049
+ constant
1050
+ n
1051
+ x
1052
+ 6
1053
+ Reader
1054
+ x
1055
+ 22
1056
+ vm_const_defined_under
1057
+ n
1058
+ x
1059
+ 3
1060
+ new
1061
+ x
1062
+ 8
1063
+ allocate
1064
+ x
1065
+ 10
1066
+ initialize
1067
+ x
1068
+ 7
1069
+ @reader
1070
+ n
1071
+ x
1072
+ 6
1073
+ @queue
1074
+ x
1075
+ 6
1076
+ @multi
1077
+ M
1078
+ 1
1079
+ p
1080
+ 2
1081
+ x
1082
+ 9
1083
+ for_block
1084
+ t
1085
+ n
1086
+ x
1087
+ 10
1088
+ initialize
1089
+ i
1090
+ 2
1091
+ 1
1092
+ 11
1093
+ I
1094
+ 2
1095
+ I
1096
+ 0
1097
+ I
1098
+ 0
1099
+ I
1100
+ 0
1101
+ I
1102
+ -2
1103
+ p
1104
+ 0
1105
+ p
1106
+ 3
1107
+ I
1108
+ 0
1109
+ I
1110
+ 26
1111
+ I
1112
+ 2
1113
+ x
1114
+ 52
1115
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1116
+ p
1117
+ 0
1118
+ x
1119
+ 4
1120
+ proc
1121
+ x
1122
+ 16
1123
+ @pubsub_callback
1124
+ p
1125
+ 17
1126
+ I
1127
+ -1
1128
+ I
1129
+ 1e
1130
+ I
1131
+ e
1132
+ I
1133
+ 1f
1134
+ I
1135
+ 4e
1136
+ I
1137
+ 20
1138
+ I
1139
+ 6c
1140
+ I
1141
+ 22
1142
+ I
1143
+ 86
1144
+ I
1145
+ 0
1146
+ I
1147
+ 87
1148
+ I
1149
+ 24
1150
+ I
1151
+ 8c
1152
+ I
1153
+ 25
1154
+ I
1155
+ 90
1156
+ I
1157
+ 26
1158
+ I
1159
+ 9a
1160
+ x
1161
+ 52
1162
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1163
+ p
1164
+ 1
1165
+ x
1166
+ 7
1167
+ options
1168
+ x
1169
+ 17
1170
+ method_visibility
1171
+ x
1172
+ 15
1173
+ add_defn_method
1174
+ x
1175
+ 6
1176
+ unbind
1177
+ M
1178
+ 1
1179
+ n
1180
+ n
1181
+ x
1182
+ 6
1183
+ unbind
1184
+ i
1185
+ 51
1186
+ 39
1187
+ 0
1188
+ 49
1189
+ 1
1190
+ 0
1191
+ 10
1192
+ 49
1193
+ 39
1194
+ 0
1195
+ 49
1196
+ 2
1197
+ 0
1198
+ 45
1199
+ 3
1200
+ 4
1201
+ 13
1202
+ 71
1203
+ 5
1204
+ 47
1205
+ 9
1206
+ 36
1207
+ 47
1208
+ 49
1209
+ 6
1210
+ 0
1211
+ 13
1212
+ 7
1213
+ 7
1214
+ 64
1215
+ 47
1216
+ 49
1217
+ 8
1218
+ 1
1219
+ 15
1220
+ 8
1221
+ 42
1222
+ 7
1223
+ 7
1224
+ 64
1225
+ 49
1226
+ 5
1227
+ 1
1228
+ 49
1229
+ 9
1230
+ 1
1231
+ 15
1232
+ 68
1233
+ 8
1234
+ 0
1235
+ 1
1236
+ 11
1237
+ I
1238
+ 4
1239
+ I
1240
+ 0
1241
+ I
1242
+ 0
1243
+ I
1244
+ 0
1245
+ n
1246
+ p
1247
+ 10
1248
+ x
1249
+ 6
1250
+ @queue
1251
+ x
1252
+ 6
1253
+ empty?
1254
+ x
1255
+ 5
1256
+ shift
1257
+ x
1258
+ 12
1259
+ RuntimeError
1260
+ n
1261
+ x
1262
+ 3
1263
+ new
1264
+ x
1265
+ 8
1266
+ allocate
1267
+ s
1268
+ 17
1269
+ connection closed
1270
+ x
1271
+ 10
1272
+ initialize
1273
+ x
1274
+ 4
1275
+ fail
1276
+ p
1277
+ 9
1278
+ I
1279
+ -1
1280
+ I
1281
+ 29
1282
+ I
1283
+ 0
1284
+ I
1285
+ 2a
1286
+ I
1287
+ 7
1288
+ I
1289
+ 2b
1290
+ I
1291
+ 31
1292
+ I
1293
+ 0
1294
+ I
1295
+ 33
1296
+ x
1297
+ 52
1298
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1299
+ p
1300
+ 0
1301
+ x
1302
+ 9
1303
+ on_pubsub
1304
+ M
1305
+ 1
1306
+ n
1307
+ n
1308
+ x
1309
+ 9
1310
+ on_pubsub
1311
+ i
1312
+ 9
1313
+ 95
1314
+ 19
1315
+ 0
1316
+ 15
1317
+ 20
1318
+ 0
1319
+ 38
1320
+ 0
1321
+ 11
1322
+ I
1323
+ 2
1324
+ I
1325
+ 1
1326
+ I
1327
+ 0
1328
+ I
1329
+ 0
1330
+ n
1331
+ p
1332
+ 1
1333
+ x
1334
+ 16
1335
+ @pubsub_callback
1336
+ p
1337
+ 5
1338
+ I
1339
+ -1
1340
+ I
1341
+ 32
1342
+ I
1343
+ 4
1344
+ I
1345
+ 33
1346
+ I
1347
+ 9
1348
+ x
1349
+ 52
1350
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1351
+ p
1352
+ 1
1353
+ x
1354
+ 5
1355
+ block
1356
+ x
1357
+ 12
1358
+ receive_data
1359
+ M
1360
+ 1
1361
+ n
1362
+ n
1363
+ x
1364
+ 12
1365
+ receive_data
1366
+ i
1367
+ 163
1368
+ 39
1369
+ 0
1370
+ 20
1371
+ 0
1372
+ 49
1373
+ 1
1374
+ 1
1375
+ 15
1376
+ 26
1377
+ 93
1378
+ 0
1379
+ 15
1380
+ 29
1381
+ 25
1382
+ 0
1383
+ 39
1384
+ 0
1385
+ 49
1386
+ 2
1387
+ 0
1388
+ 19
1389
+ 0
1390
+ 30
1391
+ 8
1392
+ 103
1393
+ 26
1394
+ 93
1395
+ 1
1396
+ 15
1397
+ 24
1398
+ 13
1399
+ 45
1400
+ 3
1401
+ 4
1402
+ 12
1403
+ 49
1404
+ 5
1405
+ 1
1406
+ 10
1407
+ 42
1408
+ 8
1409
+ 98
1410
+ 15
1411
+ 24
1412
+ 19
1413
+ 1
1414
+ 15
1415
+ 45
1416
+ 6
1417
+ 7
1418
+ 20
1419
+ 1
1420
+ 86
1421
+ 5
1422
+ 9
1423
+ 65
1424
+ 5
1425
+ 20
1426
+ 1
1427
+ 47
1428
+ 49
1429
+ 8
1430
+ 1
1431
+ 8
1432
+ 66
1433
+ 1
1434
+ 15
1435
+ 39
1436
+ 9
1437
+ 49
1438
+ 10
1439
+ 0
1440
+ 9
1441
+ 77
1442
+ 1
1443
+ 8
1444
+ 87
1445
+ 39
1446
+ 9
1447
+ 49
1448
+ 11
1449
+ 0
1450
+ 20
1451
+ 1
1452
+ 49
1453
+ 12
1454
+ 1
1455
+ 15
1456
+ 5
1457
+ 48
1458
+ 13
1459
+ 15
1460
+ 3
1461
+ 19
1462
+ 0
1463
+ 25
1464
+ 8
1465
+ 103
1466
+ 15
1467
+ 92
1468
+ 1
1469
+ 27
1470
+ 34
1471
+ 92
1472
+ 0
1473
+ 27
1474
+ 3
1475
+ 83
1476
+ 14
1477
+ 10
1478
+ 161
1479
+ 39
1480
+ 9
1481
+ 49
1482
+ 11
1483
+ 0
1484
+ 19
1485
+ 2
1486
+ 15
1487
+ 20
1488
+ 2
1489
+ 9
1490
+ 150
1491
+ 45
1492
+ 3
1493
+ 15
1494
+ 20
1495
+ 0
1496
+ 86
1497
+ 5
1498
+ 9
1499
+ 141
1500
+ 20
1501
+ 2
1502
+ 20
1503
+ 0
1504
+ 49
1505
+ 12
1506
+ 1
1507
+ 8
1508
+ 148
1509
+ 20
1510
+ 2
1511
+ 20
1512
+ 0
1513
+ 49
1514
+ 16
1515
+ 1
1516
+ 8
1517
+ 157
1518
+ 39
1519
+ 17
1520
+ 20
1521
+ 0
1522
+ 49
1523
+ 18
1524
+ 1
1525
+ 15
1526
+ 68
1527
+ 8
1528
+ 8
1529
+ 1
1530
+ 11
1531
+ I
1532
+ 8
1533
+ I
1534
+ 3
1535
+ I
1536
+ 1
1537
+ I
1538
+ 1
1539
+ n
1540
+ p
1541
+ 19
1542
+ x
1543
+ 7
1544
+ @reader
1545
+ x
1546
+ 4
1547
+ feed
1548
+ x
1549
+ 4
1550
+ gets
1551
+ x
1552
+ 9
1553
+ Exception
1554
+ n
1555
+ x
1556
+ 3
1557
+ ===
1558
+ x
1559
+ 9
1560
+ Interrupt
1561
+ n
1562
+ x
1563
+ 5
1564
+ raise
1565
+ x
1566
+ 6
1567
+ @queue
1568
+ x
1569
+ 6
1570
+ empty?
1571
+ x
1572
+ 5
1573
+ shift
1574
+ x
1575
+ 4
1576
+ fail
1577
+ x
1578
+ 16
1579
+ close_connection
1580
+ x
1581
+ 2
1582
+ ==
1583
+ n
1584
+ x
1585
+ 7
1586
+ succeed
1587
+ x
1588
+ 16
1589
+ @pubsub_callback
1590
+ x
1591
+ 4
1592
+ call
1593
+ p
1594
+ 47
1595
+ I
1596
+ -1
1597
+ I
1598
+ 36
1599
+ I
1600
+ 0
1601
+ I
1602
+ 37
1603
+ I
1604
+ 8
1605
+ I
1606
+ 3a
1607
+ I
1608
+ 19
1609
+ I
1610
+ 0
1611
+ I
1612
+ 1e
1613
+ I
1614
+ 3b
1615
+ I
1616
+ 2b
1617
+ I
1618
+ 40
1619
+ I
1620
+ 2c
1621
+ I
1622
+ 3b
1623
+ I
1624
+ 2f
1625
+ I
1626
+ 3c
1627
+ I
1628
+ 42
1629
+ I
1630
+ 0
1631
+ I
1632
+ 43
1633
+ I
1634
+ 3d
1635
+ I
1636
+ 57
1637
+ I
1638
+ 0
1639
+ I
1640
+ 58
1641
+ I
1642
+ 3e
1643
+ I
1644
+ 5c
1645
+ I
1646
+ 3f
1647
+ I
1648
+ 67
1649
+ I
1650
+ 0
1651
+ I
1652
+ 6a
1653
+ I
1654
+ 41
1655
+ I
1656
+ 6f
1657
+ I
1658
+ 42
1659
+ I
1660
+ 77
1661
+ I
1662
+ 43
1663
+ I
1664
+ 7b
1665
+ I
1666
+ 44
1667
+ I
1668
+ 84
1669
+ I
1670
+ 45
1671
+ I
1672
+ 8d
1673
+ I
1674
+ 47
1675
+ I
1676
+ 94
1677
+ I
1678
+ 0
1679
+ I
1680
+ 96
1681
+ I
1682
+ 4a
1683
+ I
1684
+ 9d
1685
+ I
1686
+ 0
1687
+ I
1688
+ a3
1689
+ x
1690
+ 52
1691
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1692
+ p
1693
+ 3
1694
+ x
1695
+ 4
1696
+ data
1697
+ x
1698
+ 1
1699
+ e
1700
+ x
1701
+ 10
1702
+ deferrable
1703
+ x
1704
+ 14
1705
+ method_missing
1706
+ M
1707
+ 1
1708
+ n
1709
+ n
1710
+ x
1711
+ 14
1712
+ method_missing
1713
+ i
1714
+ 124
1715
+ 95
1716
+ 19
1717
+ 2
1718
+ 15
1719
+ 39
1720
+ 0
1721
+ 13
1722
+ 9
1723
+ 27
1724
+ 15
1725
+ 7
1726
+ 1
1727
+ 7
1728
+ 2
1729
+ 35
1730
+ 2
1731
+ 20
1732
+ 0
1733
+ 49
1734
+ 3
1735
+ 1
1736
+ 10
1737
+ 26
1738
+ 2
1739
+ 8
1740
+ 27
1741
+ 3
1742
+ 9
1743
+ 79
1744
+ 5
1745
+ 2
1746
+ 3
1747
+ 20
1748
+ 0
1749
+ 20
1750
+ 1
1751
+ 36
1752
+ 1
1753
+ 47
1754
+ 51
1755
+ 4
1756
+ 3
1757
+ 19
1758
+ 3
1759
+ 15
1760
+ 5
1761
+ 3
1762
+ 2
1763
+ 20
1764
+ 0
1765
+ 47
1766
+ 49
1767
+ 4
1768
+ 3
1769
+ 19
1770
+ 4
1771
+ 15
1772
+ 39
1773
+ 0
1774
+ 19
1775
+ 5
1776
+ 15
1777
+ 20
1778
+ 3
1779
+ 56
1780
+ 5
1781
+ 50
1782
+ 6
1783
+ 0
1784
+ 15
1785
+ 20
1786
+ 3
1787
+ 56
1788
+ 7
1789
+ 50
1790
+ 8
1791
+ 0
1792
+ 8
1793
+ 94
1794
+ 5
1795
+ 2
1796
+ 2
1797
+ 20
1798
+ 0
1799
+ 20
1800
+ 1
1801
+ 36
1802
+ 1
1803
+ 47
1804
+ 51
1805
+ 4
1806
+ 3
1807
+ 19
1808
+ 4
1809
+ 15
1810
+ 20
1811
+ 2
1812
+ 9
1813
+ 119
1814
+ 20
1815
+ 4
1816
+ 20
1817
+ 2
1818
+ 13
1819
+ 70
1820
+ 10
1821
+ 114
1822
+ 44
1823
+ 43
1824
+ 9
1825
+ 12
1826
+ 49
1827
+ 10
1828
+ 1
1829
+ 50
1830
+ 6
1831
+ 0
1832
+ 8
1833
+ 120
1834
+ 1
1835
+ 15
1836
+ 20
1837
+ 4
1838
+ 11
1839
+ I
1840
+ c
1841
+ I
1842
+ 6
1843
+ I
1844
+ 1
1845
+ I
1846
+ 1
1847
+ I
1848
+ 1
1849
+ p
1850
+ 11
1851
+ x
1852
+ 6
1853
+ @multi
1854
+ x
1855
+ 5
1856
+ multi
1857
+ x
1858
+ 4
1859
+ exec
1860
+ x
1861
+ 8
1862
+ include?
1863
+ x
1864
+ 11
1865
+ new_command
1866
+ M
1867
+ 1
1868
+ p
1869
+ 2
1870
+ x
1871
+ 9
1872
+ for_block
1873
+ t
1874
+ n
1875
+ x
1876
+ 14
1877
+ method_missing
1878
+ i
1879
+ 14
1880
+ 57
1881
+ 19
1882
+ 0
1883
+ 15
1884
+ 21
1885
+ 1
1886
+ 5
1887
+ 21
1888
+ 1
1889
+ 4
1890
+ 49
1891
+ 0
1892
+ 1
1893
+ 11
1894
+ I
1895
+ 4
1896
+ I
1897
+ 1
1898
+ I
1899
+ 1
1900
+ I
1901
+ 1
1902
+ n
1903
+ p
1904
+ 1
1905
+ x
1906
+ 2
1907
+ <<
1908
+ p
1909
+ 5
1910
+ I
1911
+ 0
1912
+ I
1913
+ 54
1914
+ I
1915
+ 4
1916
+ I
1917
+ 55
1918
+ I
1919
+ e
1920
+ x
1921
+ 52
1922
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
1923
+ p
1924
+ 1
1925
+ x
1926
+ 6
1927
+ status
1928
+ x
1929
+ 8
1930
+ callback
1931
+ M
1932
+ 1
1933
+ p
1934
+ 2
1935
+ x
1936
+ 9
1937
+ for_block
1938
+ t
1939
+ n
1940
+ x
1941
+ 14
1942
+ method_missing
1943
+ i
1944
+ 22
1945
+ 57
1946
+ 19
1947
+ 0
1948
+ 15
1949
+ 21
1950
+ 1
1951
+ 5
1952
+ 20
1953
+ 0
1954
+ 49
1955
+ 0
1956
+ 1
1957
+ 15
1958
+ 21
1959
+ 1
1960
+ 4
1961
+ 20
1962
+ 0
1963
+ 49
1964
+ 1
1965
+ 1
1966
+ 11
1967
+ I
1968
+ 4
1969
+ I
1970
+ 1
1971
+ I
1972
+ 1
1973
+ I
1974
+ 1
1975
+ n
1976
+ p
1977
+ 2
1978
+ x
1979
+ 2
1980
+ <<
1981
+ x
1982
+ 4
1983
+ fail
1984
+ p
1985
+ 7
1986
+ I
1987
+ 0
1988
+ I
1989
+ 57
1990
+ I
1991
+ 4
1992
+ I
1993
+ 58
1994
+ I
1995
+ d
1996
+ I
1997
+ 59
1998
+ I
1999
+ 16
2000
+ x
2001
+ 52
2002
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2003
+ p
2004
+ 1
2005
+ x
2006
+ 3
2007
+ err
2008
+ x
2009
+ 7
2010
+ errback
2011
+ x
2012
+ 4
2013
+ Proc
2014
+ x
2015
+ 14
2016
+ __from_block__
2017
+ p
2018
+ 25
2019
+ I
2020
+ -1
2021
+ I
2022
+ 4f
2023
+ I
2024
+ 4
2025
+ I
2026
+ 50
2027
+ I
2028
+ 1d
2029
+ I
2030
+ 51
2031
+ I
2032
+ 2d
2033
+ I
2034
+ 52
2035
+ I
2036
+ 39
2037
+ I
2038
+ 53
2039
+ I
2040
+ 3e
2041
+ I
2042
+ 54
2043
+ I
2044
+ 46
2045
+ I
2046
+ 57
2047
+ I
2048
+ 4f
2049
+ I
2050
+ 5c
2051
+ I
2052
+ 5e
2053
+ I
2054
+ 0
2055
+ I
2056
+ 5f
2057
+ I
2058
+ 5e
2059
+ I
2060
+ 78
2061
+ I
2062
+ 0
2063
+ I
2064
+ 79
2065
+ I
2066
+ 5f
2067
+ I
2068
+ 7c
2069
+ x
2070
+ 52
2071
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2072
+ p
2073
+ 6
2074
+ x
2075
+ 6
2076
+ method
2077
+ x
2078
+ 4
2079
+ args
2080
+ x
2081
+ 5
2082
+ block
2083
+ x
2084
+ 9
2085
+ for_queue
2086
+ x
2087
+ 7
2088
+ command
2089
+ x
2090
+ 14
2091
+ callback_multi
2092
+ x
2093
+ 9
2094
+ in_multi?
2095
+ M
2096
+ 1
2097
+ n
2098
+ n
2099
+ x
2100
+ 9
2101
+ in_multi?
2102
+ i
2103
+ 15
2104
+ 39
2105
+ 0
2106
+ 10
2107
+ 7
2108
+ 2
2109
+ 8
2110
+ 8
2111
+ 3
2112
+ 10
2113
+ 13
2114
+ 2
2115
+ 8
2116
+ 14
2117
+ 3
2118
+ 11
2119
+ I
2120
+ 1
2121
+ I
2122
+ 0
2123
+ I
2124
+ 0
2125
+ I
2126
+ 0
2127
+ n
2128
+ p
2129
+ 1
2130
+ x
2131
+ 6
2132
+ @multi
2133
+ p
2134
+ 5
2135
+ I
2136
+ -1
2137
+ I
2138
+ 62
2139
+ I
2140
+ 0
2141
+ I
2142
+ 63
2143
+ I
2144
+ f
2145
+ x
2146
+ 52
2147
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2148
+ p
2149
+ 0
2150
+ x
2151
+ 5
2152
+ multi
2153
+ M
2154
+ 1
2155
+ n
2156
+ n
2157
+ x
2158
+ 5
2159
+ multi
2160
+ i
2161
+ 23
2162
+ 39
2163
+ 0
2164
+ 13
2165
+ 10
2166
+ 10
2167
+ 15
2168
+ 35
2169
+ 0
2170
+ 38
2171
+ 0
2172
+ 15
2173
+ 5
2174
+ 7
2175
+ 1
2176
+ 20
2177
+ 0
2178
+ 36
2179
+ 1
2180
+ 47
2181
+ 51
2182
+ 2
2183
+ 1
2184
+ 11
2185
+ I
2186
+ 5
2187
+ I
2188
+ 1
2189
+ I
2190
+ 0
2191
+ I
2192
+ 0
2193
+ I
2194
+ 0
2195
+ p
2196
+ 3
2197
+ x
2198
+ 6
2199
+ @multi
2200
+ x
2201
+ 5
2202
+ multi
2203
+ x
2204
+ 14
2205
+ method_missing
2206
+ p
2207
+ 7
2208
+ I
2209
+ -1
2210
+ I
2211
+ 66
2212
+ I
2213
+ 0
2214
+ I
2215
+ 67
2216
+ I
2217
+ b
2218
+ I
2219
+ 68
2220
+ I
2221
+ 17
2222
+ x
2223
+ 52
2224
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2225
+ p
2226
+ 1
2227
+ x
2228
+ 4
2229
+ args
2230
+ x
2231
+ 4
2232
+ exec
2233
+ M
2234
+ 1
2235
+ n
2236
+ n
2237
+ x
2238
+ 4
2239
+ exec
2240
+ i
2241
+ 31
2242
+ 5
2243
+ 7
2244
+ 0
2245
+ 20
2246
+ 0
2247
+ 36
2248
+ 1
2249
+ 47
2250
+ 51
2251
+ 1
2252
+ 1
2253
+ 19
2254
+ 1
2255
+ 15
2256
+ 39
2257
+ 2
2258
+ 19
2259
+ 2
2260
+ 15
2261
+ 1
2262
+ 38
2263
+ 2
2264
+ 15
2265
+ 20
2266
+ 1
2267
+ 56
2268
+ 3
2269
+ 50
2270
+ 4
2271
+ 0
2272
+ 11
2273
+ I
2274
+ 7
2275
+ I
2276
+ 3
2277
+ I
2278
+ 0
2279
+ I
2280
+ 0
2281
+ I
2282
+ 0
2283
+ p
2284
+ 5
2285
+ x
2286
+ 4
2287
+ exec
2288
+ x
2289
+ 14
2290
+ method_missing
2291
+ x
2292
+ 6
2293
+ @multi
2294
+ M
2295
+ 1
2296
+ p
2297
+ 2
2298
+ x
2299
+ 9
2300
+ for_block
2301
+ t
2302
+ n
2303
+ x
2304
+ 4
2305
+ exec
2306
+ i
2307
+ 34
2308
+ 57
2309
+ 19
2310
+ 0
2311
+ 15
2312
+ 20
2313
+ 0
2314
+ 9
2315
+ 32
2316
+ 35
2317
+ 0
2318
+ 19
2319
+ 1
2320
+ 15
2321
+ 21
2322
+ 1
2323
+ 2
2324
+ 56
2325
+ 0
2326
+ 50
2327
+ 1
2328
+ 0
2329
+ 15
2330
+ 21
2331
+ 1
2332
+ 1
2333
+ 20
2334
+ 1
2335
+ 49
2336
+ 2
2337
+ 1
2338
+ 8
2339
+ 33
2340
+ 1
2341
+ 11
2342
+ I
2343
+ 5
2344
+ I
2345
+ 2
2346
+ I
2347
+ 1
2348
+ I
2349
+ 1
2350
+ n
2351
+ p
2352
+ 3
2353
+ M
2354
+ 1
2355
+ p
2356
+ 2
2357
+ x
2358
+ 9
2359
+ for_block
2360
+ t
2361
+ n
2362
+ x
2363
+ 4
2364
+ exec
2365
+ i
2366
+ 67
2367
+ 57
2368
+ 19
2369
+ 0
2370
+ 15
2371
+ 45
2372
+ 0
2373
+ 1
2374
+ 20
2375
+ 0
2376
+ 86
2377
+ 2
2378
+ 9
2379
+ 23
2380
+ 21
2381
+ 1
2382
+ 1
2383
+ 20
2384
+ 0
2385
+ 49
2386
+ 3
2387
+ 1
2388
+ 8
2389
+ 66
2390
+ 21
2391
+ 1
2392
+ 0
2393
+ 49
2394
+ 4
2395
+ 0
2396
+ 19
2397
+ 1
2398
+ 15
2399
+ 21
2400
+ 1
2401
+ 1
2402
+ 20
2403
+ 1
2404
+ 49
2405
+ 3
2406
+ 1
2407
+ 15
2408
+ 45
2409
+ 0
2410
+ 5
2411
+ 20
2412
+ 1
2413
+ 86
2414
+ 2
2415
+ 9
2416
+ 59
2417
+ 20
2418
+ 0
2419
+ 20
2420
+ 1
2421
+ 49
2422
+ 6
2423
+ 1
2424
+ 8
2425
+ 66
2426
+ 20
2427
+ 0
2428
+ 20
2429
+ 1
2430
+ 49
2431
+ 7
2432
+ 1
2433
+ 11
2434
+ I
2435
+ 5
2436
+ I
2437
+ 2
2438
+ I
2439
+ 1
2440
+ I
2441
+ 1
2442
+ n
2443
+ p
2444
+ 8
2445
+ x
2446
+ 9
2447
+ Exception
2448
+ n
2449
+ x
2450
+ 3
2451
+ ===
2452
+ x
2453
+ 2
2454
+ <<
2455
+ x
2456
+ 5
2457
+ shift
2458
+ n
2459
+ x
2460
+ 4
2461
+ fail
2462
+ x
2463
+ 7
2464
+ succeed
2465
+ p
2466
+ 19
2467
+ I
2468
+ 0
2469
+ I
2470
+ 72
2471
+ I
2472
+ 4
2473
+ I
2474
+ 73
2475
+ I
2476
+ d
2477
+ I
2478
+ 74
2479
+ I
2480
+ 17
2481
+ I
2482
+ 76
2483
+ I
2484
+ 20
2485
+ I
2486
+ 77
2487
+ I
2488
+ 29
2489
+ I
2490
+ 78
2491
+ I
2492
+ 32
2493
+ I
2494
+ 79
2495
+ I
2496
+ 3b
2497
+ I
2498
+ 7b
2499
+ I
2500
+ 42
2501
+ I
2502
+ 0
2503
+ I
2504
+ 43
2505
+ x
2506
+ 52
2507
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2508
+ p
2509
+ 2
2510
+ x
2511
+ 7
2512
+ command
2513
+ x
2514
+ 6
2515
+ result
2516
+ x
2517
+ 4
2518
+ each
2519
+ x
2520
+ 7
2521
+ succeed
2522
+ p
2523
+ 15
2524
+ I
2525
+ 0
2526
+ I
2527
+ 6f
2528
+ I
2529
+ 4
2530
+ I
2531
+ 70
2532
+ I
2533
+ 8
2534
+ I
2535
+ 71
2536
+ I
2537
+ d
2538
+ I
2539
+ 72
2540
+ I
2541
+ 16
2542
+ I
2543
+ 7f
2544
+ I
2545
+ 20
2546
+ I
2547
+ 70
2548
+ I
2549
+ 21
2550
+ I
2551
+ 0
2552
+ I
2553
+ 22
2554
+ x
2555
+ 52
2556
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2557
+ p
2558
+ 2
2559
+ x
2560
+ 7
2561
+ results
2562
+ x
2563
+ 18
2564
+ normalized_results
2565
+ x
2566
+ 8
2567
+ callback
2568
+ p
2569
+ 11
2570
+ I
2571
+ -1
2572
+ I
2573
+ 6b
2574
+ I
2575
+ 0
2576
+ I
2577
+ 6c
2578
+ I
2579
+ e
2580
+ I
2581
+ 6d
2582
+ I
2583
+ 13
2584
+ I
2585
+ 6e
2586
+ I
2587
+ 17
2588
+ I
2589
+ 6f
2590
+ I
2591
+ 1f
2592
+ x
2593
+ 52
2594
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2595
+ p
2596
+ 3
2597
+ x
2598
+ 4
2599
+ args
2600
+ x
2601
+ 10
2602
+ redis_exec
2603
+ x
2604
+ 14
2605
+ callback_multi
2606
+ x
2607
+ 10
2608
+ transforms
2609
+ M
2610
+ 1
2611
+ n
2612
+ n
2613
+ x
2614
+ 10
2615
+ transforms
2616
+ i
2617
+ 35
2618
+ 65
2619
+ 7
2620
+ 0
2621
+ 49
2622
+ 1
2623
+ 1
2624
+ 9
2625
+ 18
2626
+ 65
2627
+ 7
2628
+ 0
2629
+ 49
2630
+ 2
2631
+ 1
2632
+ 13
2633
+ 10
2634
+ 34
2635
+ 15
2636
+ 65
2637
+ 7
2638
+ 0
2639
+ 5
2640
+ 56
2641
+ 3
2642
+ 47
2643
+ 50
2644
+ 4
2645
+ 0
2646
+ 49
2647
+ 5
2648
+ 0
2649
+ 49
2650
+ 6
2651
+ 2
2652
+ 11
2653
+ I
2654
+ 4
2655
+ I
2656
+ 0
2657
+ I
2658
+ 0
2659
+ I
2660
+ 0
2661
+ n
2662
+ p
2663
+ 7
2664
+ x
2665
+ 12
2666
+ @@transforms
2667
+ x
2668
+ 23
2669
+ class_variable_defined?
2670
+ x
2671
+ 18
2672
+ class_variable_get
2673
+ M
2674
+ 1
2675
+ p
2676
+ 2
2677
+ x
2678
+ 9
2679
+ for_block
2680
+ t
2681
+ n
2682
+ x
2683
+ 10
2684
+ transforms
2685
+ i
2686
+ 219
2687
+ 5
2688
+ 56
2689
+ 0
2690
+ 47
2691
+ 50
2692
+ 1
2693
+ 0
2694
+ 19
2695
+ 0
2696
+ 15
2697
+ 5
2698
+ 56
2699
+ 2
2700
+ 47
2701
+ 50
2702
+ 1
2703
+ 0
2704
+ 19
2705
+ 1
2706
+ 15
2707
+ 5
2708
+ 56
2709
+ 3
2710
+ 47
2711
+ 50
2712
+ 1
2713
+ 0
2714
+ 19
2715
+ 2
2716
+ 15
2717
+ 44
2718
+ 43
2719
+ 4
2720
+ 4
2721
+ 20
2722
+ 49
2723
+ 5
2724
+ 1
2725
+ 13
2726
+ 7
2727
+ 6
2728
+ 20
2729
+ 2
2730
+ 49
2731
+ 7
2732
+ 2
2733
+ 15
2734
+ 13
2735
+ 7
2736
+ 8
2737
+ 20
2738
+ 2
2739
+ 49
2740
+ 7
2741
+ 2
2742
+ 15
2743
+ 13
2744
+ 7
2745
+ 9
2746
+ 20
2747
+ 2
2748
+ 49
2749
+ 7
2750
+ 2
2751
+ 15
2752
+ 13
2753
+ 7
2754
+ 10
2755
+ 20
2756
+ 2
2757
+ 49
2758
+ 7
2759
+ 2
2760
+ 15
2761
+ 13
2762
+ 7
2763
+ 11
2764
+ 20
2765
+ 0
2766
+ 49
2767
+ 7
2768
+ 2
2769
+ 15
2770
+ 13
2771
+ 7
2772
+ 12
2773
+ 20
2774
+ 0
2775
+ 49
2776
+ 7
2777
+ 2
2778
+ 15
2779
+ 13
2780
+ 7
2781
+ 13
2782
+ 20
2783
+ 0
2784
+ 49
2785
+ 7
2786
+ 2
2787
+ 15
2788
+ 13
2789
+ 7
2790
+ 14
2791
+ 20
2792
+ 0
2793
+ 49
2794
+ 7
2795
+ 2
2796
+ 15
2797
+ 13
2798
+ 7
2799
+ 15
2800
+ 20
2801
+ 0
2802
+ 49
2803
+ 7
2804
+ 2
2805
+ 15
2806
+ 13
2807
+ 7
2808
+ 16
2809
+ 20
2810
+ 0
2811
+ 49
2812
+ 7
2813
+ 2
2814
+ 15
2815
+ 13
2816
+ 7
2817
+ 17
2818
+ 20
2819
+ 0
2820
+ 49
2821
+ 7
2822
+ 2
2823
+ 15
2824
+ 13
2825
+ 7
2826
+ 18
2827
+ 20
2828
+ 0
2829
+ 49
2830
+ 7
2831
+ 2
2832
+ 15
2833
+ 13
2834
+ 7
2835
+ 19
2836
+ 20
2837
+ 0
2838
+ 49
2839
+ 7
2840
+ 2
2841
+ 15
2842
+ 13
2843
+ 7
2844
+ 20
2845
+ 20
2846
+ 1
2847
+ 49
2848
+ 7
2849
+ 2
2850
+ 15
2851
+ 13
2852
+ 7
2853
+ 21
2854
+ 20
2855
+ 0
2856
+ 49
2857
+ 7
2858
+ 2
2859
+ 15
2860
+ 13
2861
+ 7
2862
+ 22
2863
+ 20
2864
+ 0
2865
+ 49
2866
+ 7
2867
+ 2
2868
+ 15
2869
+ 13
2870
+ 7
2871
+ 23
2872
+ 20
2873
+ 0
2874
+ 49
2875
+ 7
2876
+ 2
2877
+ 15
2878
+ 13
2879
+ 7
2880
+ 24
2881
+ 20
2882
+ 0
2883
+ 49
2884
+ 7
2885
+ 2
2886
+ 15
2887
+ 13
2888
+ 7
2889
+ 25
2890
+ 20
2891
+ 0
2892
+ 49
2893
+ 7
2894
+ 2
2895
+ 15
2896
+ 13
2897
+ 7
2898
+ 26
2899
+ 20
2900
+ 0
2901
+ 49
2902
+ 7
2903
+ 2
2904
+ 15
2905
+ 11
2906
+ I
2907
+ 8
2908
+ I
2909
+ 3
2910
+ I
2911
+ 0
2912
+ I
2913
+ 0
2914
+ I
2915
+ -2
2916
+ p
2917
+ 27
2918
+ M
2919
+ 1
2920
+ p
2921
+ 2
2922
+ x
2923
+ 9
2924
+ for_block
2925
+ t
2926
+ n
2927
+ x
2928
+ 10
2929
+ transforms
2930
+ i
2931
+ 20
2932
+ 57
2933
+ 19
2934
+ 0
2935
+ 15
2936
+ 20
2937
+ 0
2938
+ 78
2939
+ 49
2940
+ 0
2941
+ 1
2942
+ 79
2943
+ 83
2944
+ 1
2945
+ 9
2946
+ 18
2947
+ 2
2948
+ 8
2949
+ 19
2950
+ 3
2951
+ 11
2952
+ I
2953
+ 4
2954
+ I
2955
+ 1
2956
+ I
2957
+ 1
2958
+ I
2959
+ 1
2960
+ n
2961
+ p
2962
+ 2
2963
+ x
2964
+ 2
2965
+ []
2966
+ x
2967
+ 2
2968
+ ==
2969
+ p
2970
+ 5
2971
+ I
2972
+ 0
2973
+ I
2974
+ 8b
2975
+ I
2976
+ 13
2977
+ I
2978
+ 0
2979
+ I
2980
+ 14
2981
+ x
2982
+ 52
2983
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
2984
+ p
2985
+ 1
2986
+ x
2987
+ 2
2988
+ tf
2989
+ x
2990
+ 6
2991
+ lambda
2992
+ M
2993
+ 1
2994
+ p
2995
+ 2
2996
+ x
2997
+ 9
2998
+ for_block
2999
+ t
3000
+ n
3001
+ x
3002
+ 10
3003
+ transforms
3004
+ i
3005
+ 17
3006
+ 57
3007
+ 22
3008
+ 1
3009
+ 1
3010
+ 15
3011
+ 45
3012
+ 0
3013
+ 1
3014
+ 21
3015
+ 1
3016
+ 1
3017
+ 36
3018
+ 1
3019
+ 51
3020
+ 2
3021
+ 0
3022
+ 11
3023
+ I
3024
+ 4
3025
+ I
3026
+ 0
3027
+ I
3028
+ 1
3029
+ I
3030
+ 1
3031
+ n
3032
+ p
3033
+ 3
3034
+ x
3035
+ 4
3036
+ Hash
3037
+ n
3038
+ x
3039
+ 2
3040
+ []
3041
+ p
3042
+ 3
3043
+ I
3044
+ 0
3045
+ I
3046
+ 8c
3047
+ I
3048
+ 11
3049
+ x
3050
+ 52
3051
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3052
+ p
3053
+ 0
3054
+ M
3055
+ 1
3056
+ p
3057
+ 2
3058
+ x
3059
+ 9
3060
+ for_block
3061
+ t
3062
+ n
3063
+ x
3064
+ 10
3065
+ transforms
3066
+ i
3067
+ 12
3068
+ 57
3069
+ 19
3070
+ 0
3071
+ 15
3072
+ 5
3073
+ 56
3074
+ 0
3075
+ 47
3076
+ 50
3077
+ 1
3078
+ 0
3079
+ 11
3080
+ I
3081
+ 4
3082
+ I
3083
+ 1
3084
+ I
3085
+ 1
3086
+ I
3087
+ 1
3088
+ n
3089
+ p
3090
+ 2
3091
+ M
3092
+ 1
3093
+ p
3094
+ 2
3095
+ x
3096
+ 9
3097
+ for_block
3098
+ t
3099
+ n
3100
+ x
3101
+ 10
3102
+ transforms
3103
+ i
3104
+ 4
3105
+ 21
3106
+ 1
3107
+ 0
3108
+ 11
3109
+ I
3110
+ 2
3111
+ I
3112
+ 0
3113
+ I
3114
+ 0
3115
+ I
3116
+ 0
3117
+ I
3118
+ -2
3119
+ p
3120
+ 0
3121
+ p
3122
+ 3
3123
+ I
3124
+ 0
3125
+ I
3126
+ 8d
3127
+ I
3128
+ 4
3129
+ x
3130
+ 52
3131
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3132
+ p
3133
+ 0
3134
+ x
3135
+ 6
3136
+ lambda
3137
+ p
3138
+ 3
3139
+ I
3140
+ 0
3141
+ I
3142
+ 8d
3143
+ I
3144
+ c
3145
+ x
3146
+ 52
3147
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3148
+ p
3149
+ 1
3150
+ x
3151
+ 3
3152
+ msg
3153
+ x
3154
+ 4
3155
+ Hash
3156
+ x
3157
+ 16
3158
+ new_from_literal
3159
+ x
3160
+ 9
3161
+ subscribe
3162
+ x
3163
+ 3
3164
+ []=
3165
+ x
3166
+ 10
3167
+ psubscribe
3168
+ x
3169
+ 11
3170
+ unsubscribe
3171
+ x
3172
+ 12
3173
+ punsubscribe
3174
+ x
3175
+ 6
3176
+ exists
3177
+ x
3178
+ 6
3179
+ expire
3180
+ x
3181
+ 8
3182
+ expireat
3183
+ x
3184
+ 4
3185
+ move
3186
+ x
3187
+ 7
3188
+ persist
3189
+ x
3190
+ 8
3191
+ renamenx
3192
+ x
3193
+ 6
3194
+ msetnx
3195
+ x
3196
+ 5
3197
+ setnx
3198
+ x
3199
+ 7
3200
+ hexists
3201
+ x
3202
+ 7
3203
+ hgetall
3204
+ x
3205
+ 4
3206
+ hset
3207
+ x
3208
+ 6
3209
+ hsetnx
3210
+ x
3211
+ 9
3212
+ sismember
3213
+ x
3214
+ 5
3215
+ smove
3216
+ x
3217
+ 4
3218
+ srem
3219
+ x
3220
+ 4
3221
+ zrem
3222
+ p
3223
+ 49
3224
+ I
3225
+ 0
3226
+ I
3227
+ 8b
3228
+ I
3229
+ a
3230
+ I
3231
+ 8c
3232
+ I
3233
+ 14
3234
+ I
3235
+ 8d
3236
+ I
3237
+ 1e
3238
+ I
3239
+ a9
3240
+ I
3241
+ 27
3242
+ I
3243
+ 90
3244
+ I
3245
+ 30
3246
+ I
3247
+ 91
3248
+ I
3249
+ 39
3250
+ I
3251
+ 92
3252
+ I
3253
+ 42
3254
+ I
3255
+ 93
3256
+ I
3257
+ 4b
3258
+ I
3259
+ 95
3260
+ I
3261
+ 54
3262
+ I
3263
+ 96
3264
+ I
3265
+ 5d
3266
+ I
3267
+ 97
3268
+ I
3269
+ 66
3270
+ I
3271
+ 98
3272
+ I
3273
+ 6f
3274
+ I
3275
+ 99
3276
+ I
3277
+ 78
3278
+ I
3279
+ 9a
3280
+ I
3281
+ 81
3282
+ I
3283
+ 9c
3284
+ I
3285
+ 8a
3286
+ I
3287
+ 9d
3288
+ I
3289
+ 93
3290
+ I
3291
+ 9f
3292
+ I
3293
+ 9c
3294
+ I
3295
+ a0
3296
+ I
3297
+ a5
3298
+ I
3299
+ a1
3300
+ I
3301
+ ae
3302
+ I
3303
+ a2
3304
+ I
3305
+ b7
3306
+ I
3307
+ a4
3308
+ I
3309
+ c0
3310
+ I
3311
+ a5
3312
+ I
3313
+ c9
3314
+ I
3315
+ a6
3316
+ I
3317
+ d2
3318
+ I
3319
+ a8
3320
+ I
3321
+ db
3322
+ x
3323
+ 52
3324
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3325
+ p
3326
+ 3
3327
+ x
3328
+ 7
3329
+ boolean
3330
+ x
3331
+ 4
3332
+ hash
3333
+ x
3334
+ 6
3335
+ pubsub
3336
+ x
3337
+ 6
3338
+ lambda
3339
+ x
3340
+ 4
3341
+ call
3342
+ x
3343
+ 18
3344
+ class_variable_set
3345
+ p
3346
+ 7
3347
+ I
3348
+ -1
3349
+ I
3350
+ 89
3351
+ I
3352
+ 0
3353
+ I
3354
+ aa
3355
+ I
3356
+ 12
3357
+ I
3358
+ 8a
3359
+ I
3360
+ 23
3361
+ x
3362
+ 52
3363
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3364
+ p
3365
+ 0
3366
+ x
3367
+ 7
3368
+ private
3369
+ x
3370
+ 11
3371
+ new_command
3372
+ M
3373
+ 1
3374
+ n
3375
+ n
3376
+ x
3377
+ 11
3378
+ new_command
3379
+ i
3380
+ 98
3381
+ 45
3382
+ 0
3383
+ 1
3384
+ 13
3385
+ 71
3386
+ 2
3387
+ 47
3388
+ 9
3389
+ 22
3390
+ 47
3391
+ 49
3392
+ 3
3393
+ 0
3394
+ 13
3395
+ 5
3396
+ 47
3397
+ 49
3398
+ 4
3399
+ 1
3400
+ 15
3401
+ 8
3402
+ 26
3403
+ 5
3404
+ 49
3405
+ 2
3406
+ 1
3407
+ 19
3408
+ 4
3409
+ 15
3410
+ 20
3411
+ 0
3412
+ 9
3413
+ 59
3414
+ 5
3415
+ 20
3416
+ 3
3417
+ 20
3418
+ 2
3419
+ 35
3420
+ 1
3421
+ 56
3422
+ 5
3423
+ 50
3424
+ 6
3425
+ 1
3426
+ 47
3427
+ 49
3428
+ 7
3429
+ 1
3430
+ 15
3431
+ 39
3432
+ 8
3433
+ 20
3434
+ 4
3435
+ 49
3436
+ 9
3437
+ 1
3438
+ 8
3439
+ 60
3440
+ 1
3441
+ 15
3442
+ 20
3443
+ 1
3444
+ 9
3445
+ 93
3446
+ 5
3447
+ 49
3448
+ 10
3449
+ 0
3450
+ 49
3451
+ 11
3452
+ 0
3453
+ 20
3454
+ 2
3455
+ 49
3456
+ 12
3457
+ 1
3458
+ 19
3459
+ 5
3460
+ 9
3461
+ 90
3462
+ 20
3463
+ 4
3464
+ 56
3465
+ 13
3466
+ 50
3467
+ 14
3468
+ 0
3469
+ 8
3470
+ 91
3471
+ 1
3472
+ 8
3473
+ 94
3474
+ 1
3475
+ 15
3476
+ 20
3477
+ 4
3478
+ 11
3479
+ I
3480
+ a
3481
+ I
3482
+ 6
3483
+ I
3484
+ 3
3485
+ I
3486
+ 3
3487
+ I
3488
+ 3
3489
+ p
3490
+ 15
3491
+ x
3492
+ 7
3493
+ Command
3494
+ n
3495
+ x
3496
+ 3
3497
+ new
3498
+ x
3499
+ 8
3500
+ allocate
3501
+ x
3502
+ 10
3503
+ initialize
3504
+ M
3505
+ 1
3506
+ p
3507
+ 2
3508
+ x
3509
+ 9
3510
+ for_block
3511
+ t
3512
+ n
3513
+ x
3514
+ 11
3515
+ new_command
3516
+ i
3517
+ 44
3518
+ 58
3519
+ 37
3520
+ 19
3521
+ 0
3522
+ 15
3523
+ 37
3524
+ 19
3525
+ 1
3526
+ 15
3527
+ 15
3528
+ 45
3529
+ 0
3530
+ 1
3531
+ 20
3532
+ 1
3533
+ 86
3534
+ 2
3535
+ 9
3536
+ 36
3537
+ 20
3538
+ 0
3539
+ 20
3540
+ 1
3541
+ 49
3542
+ 3
3543
+ 0
3544
+ 79
3545
+ 49
3546
+ 4
3547
+ 1
3548
+ 81
3549
+ 5
3550
+ 19
3551
+ 0
3552
+ 8
3553
+ 43
3554
+ 20
3555
+ 0
3556
+ 20
3557
+ 1
3558
+ 49
3559
+ 6
3560
+ 1
3561
+ 11
3562
+ I
3563
+ 6
3564
+ I
3565
+ 2
3566
+ I
3567
+ 2
3568
+ I
3569
+ 2
3570
+ n
3571
+ p
3572
+ 7
3573
+ x
3574
+ 4
3575
+ Hash
3576
+ n
3577
+ x
3578
+ 3
3579
+ ===
3580
+ x
3581
+ 4
3582
+ to_a
3583
+ x
3584
+ 7
3585
+ flatten
3586
+ x
3587
+ 1
3588
+ +
3589
+ x
3590
+ 2
3591
+ <<
3592
+ p
3593
+ 11
3594
+ I
3595
+ 0
3596
+ I
3597
+ b2
3598
+ I
3599
+ a
3600
+ I
3601
+ b3
3602
+ I
3603
+ 13
3604
+ I
3605
+ b4
3606
+ I
3607
+ 24
3608
+ I
3609
+ b6
3610
+ I
3611
+ 2b
3612
+ I
3613
+ 0
3614
+ I
3615
+ 2c
3616
+ x
3617
+ 52
3618
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3619
+ p
3620
+ 2
3621
+ x
3622
+ 3
3623
+ arr
3624
+ x
3625
+ 3
3626
+ arg
3627
+ x
3628
+ 6
3629
+ reduce
3630
+ x
3631
+ 10
3632
+ send_redis
3633
+ x
3634
+ 6
3635
+ @queue
3636
+ x
3637
+ 4
3638
+ push
3639
+ x
3640
+ 5
3641
+ class
3642
+ x
3643
+ 10
3644
+ transforms
3645
+ x
3646
+ 2
3647
+ []
3648
+ M
3649
+ 1
3650
+ p
3651
+ 2
3652
+ x
3653
+ 9
3654
+ for_block
3655
+ t
3656
+ n
3657
+ x
3658
+ 11
3659
+ new_command
3660
+ i
3661
+ 53
3662
+ 57
3663
+ 19
3664
+ 0
3665
+ 15
3666
+ 21
3667
+ 1
3668
+ 5
3669
+ 20
3670
+ 0
3671
+ 49
3672
+ 0
3673
+ 1
3674
+ 19
3675
+ 1
3676
+ 15
3677
+ 45
3678
+ 1
3679
+ 2
3680
+ 20
3681
+ 1
3682
+ 86
3683
+ 3
3684
+ 9
3685
+ 44
3686
+ 21
3687
+ 1
3688
+ 4
3689
+ 1
3690
+ 49
3691
+ 4
3692
+ 1
3693
+ 15
3694
+ 39
3695
+ 5
3696
+ 20
3697
+ 1
3698
+ 49
3699
+ 0
3700
+ 0
3701
+ 49
3702
+ 0
3703
+ 1
3704
+ 8
3705
+ 52
3706
+ 21
3707
+ 1
3708
+ 4
3709
+ 20
3710
+ 1
3711
+ 49
3712
+ 4
3713
+ 1
3714
+ 11
3715
+ I
3716
+ 5
3717
+ I
3718
+ 2
3719
+ I
3720
+ 1
3721
+ I
3722
+ 1
3723
+ n
3724
+ p
3725
+ 6
3726
+ x
3727
+ 4
3728
+ call
3729
+ x
3730
+ 4
3731
+ Proc
3732
+ n
3733
+ x
3734
+ 3
3735
+ ===
3736
+ x
3737
+ 7
3738
+ succeed
3739
+ x
3740
+ 16
3741
+ @pubsub_callback
3742
+ p
3743
+ 15
3744
+ I
3745
+ 0
3746
+ I
3747
+ bd
3748
+ I
3749
+ 4
3750
+ I
3751
+ be
3752
+ I
3753
+ f
3754
+ I
3755
+ bf
3756
+ I
3757
+ 18
3758
+ I
3759
+ c0
3760
+ I
3761
+ 20
3762
+ I
3763
+ c1
3764
+ I
3765
+ 2c
3766
+ I
3767
+ c3
3768
+ I
3769
+ 34
3770
+ I
3771
+ 0
3772
+ I
3773
+ 35
3774
+ x
3775
+ 52
3776
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3777
+ p
3778
+ 2
3779
+ x
3780
+ 4
3781
+ data
3782
+ x
3783
+ 6
3784
+ result
3785
+ x
3786
+ 8
3787
+ callback
3788
+ p
3789
+ 35
3790
+ I
3791
+ -1
3792
+ I
3793
+ af
3794
+ I
3795
+ 0
3796
+ I
3797
+ b0
3798
+ I
3799
+ 1d
3800
+ I
3801
+ b1
3802
+ I
3803
+ 21
3804
+ I
3805
+ b8
3806
+ I
3807
+ 22
3808
+ I
3809
+ b2
3810
+ I
3811
+ 2d
3812
+ I
3813
+ b8
3814
+ I
3815
+ 32
3816
+ I
3817
+ b9
3818
+ I
3819
+ 3b
3820
+ I
3821
+ b1
3822
+ I
3823
+ 3c
3824
+ I
3825
+ 0
3826
+ I
3827
+ 3d
3828
+ I
3829
+ bb
3830
+ I
3831
+ 41
3832
+ I
3833
+ bc
3834
+ I
3835
+ 51
3836
+ I
3837
+ bd
3838
+ I
3839
+ 5a
3840
+ I
3841
+ bc
3842
+ I
3843
+ 5b
3844
+ I
3845
+ 0
3846
+ I
3847
+ 5d
3848
+ I
3849
+ bb
3850
+ I
3851
+ 5e
3852
+ I
3853
+ 0
3854
+ I
3855
+ 5f
3856
+ I
3857
+ c8
3858
+ I
3859
+ 62
3860
+ x
3861
+ 52
3862
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3863
+ p
3864
+ 6
3865
+ x
3866
+ 7
3867
+ do_send
3868
+ x
3869
+ 12
3870
+ do_transform
3871
+ x
3872
+ 6
3873
+ method
3874
+ x
3875
+ 4
3876
+ args
3877
+ x
3878
+ 7
3879
+ command
3880
+ x
3881
+ 9
3882
+ transform
3883
+ p
3884
+ 27
3885
+ I
3886
+ 2
3887
+ I
3888
+ 9
3889
+ I
3890
+ b
3891
+ I
3892
+ b
3893
+ I
3894
+ 26
3895
+ I
3896
+ 1e
3897
+ I
3898
+ 34
3899
+ I
3900
+ 29
3901
+ I
3902
+ 42
3903
+ I
3904
+ 32
3905
+ I
3906
+ 50
3907
+ I
3908
+ 36
3909
+ I
3910
+ 5e
3911
+ I
3912
+ 4f
3913
+ I
3914
+ 6c
3915
+ I
3916
+ 62
3917
+ I
3918
+ 7a
3919
+ I
3920
+ 66
3921
+ I
3922
+ 88
3923
+ I
3924
+ 6b
3925
+ I
3926
+ 96
3927
+ I
3928
+ 89
3929
+ I
3930
+ a1
3931
+ I
3932
+ ad
3933
+ I
3934
+ a5
3935
+ I
3936
+ af
3937
+ I
3938
+ b3
3939
+ x
3940
+ 52
3941
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3942
+ p
3943
+ 0
3944
+ x
3945
+ 13
3946
+ attach_method
3947
+ p
3948
+ 3
3949
+ I
3950
+ 2
3951
+ I
3952
+ 7
3953
+ I
3954
+ 21
3955
+ x
3956
+ 52
3957
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3958
+ p
3959
+ 0
3960
+ x
3961
+ 13
3962
+ attach_method
3963
+ p
3964
+ 7
3965
+ I
3966
+ 0
3967
+ I
3968
+ 1
3969
+ I
3970
+ 9
3971
+ I
3972
+ 2
3973
+ I
3974
+ 17
3975
+ I
3976
+ 6
3977
+ I
3978
+ 33
3979
+ x
3980
+ 52
3981
+ /Users/dturnbull/ruby/ruby-redis/lib/redis/client.rb
3982
+ p
3983
+ 0