dalli 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of dalli might be problematic. Click here for more details.

data/History.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Dalli Changelog
2
2
  =====================
3
3
 
4
+ 1.1.0
5
+ =======
6
+
7
+ - Remove support for Rails 2.3, add support for Rails 3.1
8
+ - Fix socket failure retry logic, now you can restart memcached and Dalli won't complain!
9
+
10
+ 1.0.5
11
+ =======
12
+
13
+ - Fix socket failure retry logic, now you can restart memcached and Dalli won't complain!
14
+
4
15
  1.0.4
5
16
  =======
6
17
 
@@ -98,7 +98,9 @@ module Dalli
98
98
  if @fail_count >= options[:socket_max_failures]
99
99
  down!
100
100
  else
101
+ close
101
102
  sleep(options[:socket_failure_delay]) if options[:socket_failure_delay]
103
+ raise Dalli::NetworkError, "Socket operation failed, retrying..."
102
104
  end
103
105
  end
104
106
 
@@ -1,3 +1,3 @@
1
1
  module Dalli
2
- VERSION = '1.0.4'
2
+ VERSION = '1.0.5'
3
3
  end
@@ -2,19 +2,38 @@ require 'helper'
2
2
 
3
3
  class TestFailover < Test::Unit::TestCase
4
4
  context 'assuming some bad servers' do
5
+
6
+ should 'silently reconnect if server hiccups' do
7
+ memcached(29125) do
8
+ dc = Dalli::Client.new ['localhost:29125']
9
+ dc.set 'foo', 'bar'
10
+ foo = dc.get 'foo'
11
+ assert_equal foo, 'bar'
12
+
13
+ memcached_kill(29125)
14
+ memcached(29125) do
15
+
16
+ foo = dc.get 'foo'
17
+ assert_nil foo
18
+
19
+ memcached_kill(29125)
20
+ end
21
+ end
22
+ end
23
+
5
24
  should 'handle graceful failover' do
6
25
  memcached(29125) do
7
26
  memcached(29126) do
8
27
  dc = Dalli::Client.new ['localhost:29125', 'localhost:29126']
9
28
  dc.set 'foo', 'bar'
10
29
  foo = dc.get 'foo'
11
- assert foo, 'bar'
30
+ assert_equal foo, 'bar'
12
31
 
13
32
  memcached_kill(29125)
14
33
 
15
34
  dc.set 'foo', 'bar'
16
35
  foo = dc.get 'foo'
17
- assert foo, 'bar'
36
+ assert_equal foo, 'bar'
18
37
 
19
38
  memcached_kill(29126)
20
39
 
@@ -77,10 +77,6 @@ class TestRing < Test::Unit::TestCase
77
77
  assert_equal 1, dc.stats.values.compact.count
78
78
 
79
79
  memcached(29126) do
80
- assert_equal 1, dc.stats.values.compact.count
81
-
82
- sleep(down_retry_delay+0.1)
83
-
84
80
  assert_equal 2, dc.stats.values.compact.count
85
81
  end
86
82
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: dalli
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.4
5
+ version: 1.0.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Mike Perham
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-14 00:00:00 Z
13
+ date: 2011-06-01 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: shoulda
@@ -67,9 +67,7 @@ extra_rdoc_files: []
67
67
  files:
68
68
  - lib/action_controller/session/dalli_store.rb
69
69
  - lib/action_dispatch/middleware/session/dalli_store.rb
70
- - lib/action_dispatch/middleware/session/dalli_store.rbc
71
70
  - lib/active_support/cache/dalli_store.rb
72
- - lib/active_support/cache/dalli_store.rbc
73
71
  - lib/active_support/cache/dalli_store23.rb
74
72
  - lib/dalli/client.rb
75
73
  - lib/dalli/compatibility.rb
@@ -1,1434 +0,0 @@
1
- !RBIX
2
- 2959558172506603432
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 55
13
- 5
14
- 7
15
- 0
16
- 64
17
- 47
18
- 49
19
- 1
20
- 1
21
- 15
22
- 5
23
- 7
24
- 2
25
- 64
26
- 47
27
- 49
28
- 1
29
- 1
30
- 15
31
- 5
32
- 7
33
- 3
34
- 64
35
- 47
36
- 49
37
- 1
38
- 1
39
- 15
40
- 99
41
- 7
42
- 4
43
- 65
44
- 49
45
- 5
46
- 2
47
- 13
48
- 99
49
- 12
50
- 7
51
- 6
52
- 12
53
- 7
54
- 7
55
- 12
56
- 65
57
- 12
58
- 49
59
- 8
60
- 4
61
- 15
62
- 49
63
- 6
64
- 0
65
- 15
66
- 2
67
- 11
68
- I
69
- 6
70
- I
71
- 0
72
- I
73
- 0
74
- I
75
- 0
76
- n
77
- p
78
- 9
79
- s
80
- 20
81
- active_support/cache
82
- x
83
- 7
84
- require
85
- s
86
- 49
87
- action_dispatch/middleware/session/abstract_store
88
- s
89
- 5
90
- dalli
91
- x
92
- 14
93
- ActionDispatch
94
- x
95
- 11
96
- open_module
97
- x
98
- 15
99
- __module_init__
100
- M
101
- 1
102
- n
103
- n
104
- x
105
- 14
106
- ActionDispatch
107
- i
108
- 28
109
- 5
110
- 66
111
- 99
112
- 7
113
- 0
114
- 65
115
- 49
116
- 1
117
- 2
118
- 13
119
- 99
120
- 12
121
- 7
122
- 2
123
- 12
124
- 7
125
- 3
126
- 12
127
- 65
128
- 12
129
- 49
130
- 4
131
- 4
132
- 15
133
- 49
134
- 2
135
- 0
136
- 11
137
- I
138
- 6
139
- I
140
- 0
141
- I
142
- 0
143
- I
144
- 0
145
- n
146
- p
147
- 5
148
- x
149
- 7
150
- Session
151
- x
152
- 11
153
- open_module
154
- x
155
- 15
156
- __module_init__
157
- M
158
- 1
159
- n
160
- n
161
- x
162
- 7
163
- Session
164
- i
165
- 31
166
- 5
167
- 66
168
- 99
169
- 7
170
- 0
171
- 45
172
- 1
173
- 2
174
- 65
175
- 49
176
- 3
177
- 3
178
- 13
179
- 99
180
- 12
181
- 7
182
- 4
183
- 12
184
- 7
185
- 5
186
- 12
187
- 65
188
- 12
189
- 49
190
- 6
191
- 4
192
- 15
193
- 49
194
- 4
195
- 0
196
- 11
197
- I
198
- 6
199
- I
200
- 0
201
- I
202
- 0
203
- I
204
- 0
205
- n
206
- p
207
- 7
208
- x
209
- 10
210
- DalliStore
211
- x
212
- 13
213
- AbstractStore
214
- n
215
- x
216
- 10
217
- open_class
218
- x
219
- 14
220
- __class_init__
221
- M
222
- 1
223
- n
224
- n
225
- x
226
- 10
227
- DalliStore
228
- i
229
- 76
230
- 5
231
- 66
232
- 99
233
- 7
234
- 0
235
- 7
236
- 1
237
- 65
238
- 67
239
- 49
240
- 2
241
- 0
242
- 49
243
- 3
244
- 4
245
- 15
246
- 99
247
- 7
248
- 4
249
- 7
250
- 5
251
- 65
252
- 67
253
- 49
254
- 2
255
- 0
256
- 49
257
- 3
258
- 4
259
- 15
260
- 5
261
- 48
262
- 6
263
- 15
264
- 99
265
- 7
266
- 7
267
- 7
268
- 8
269
- 65
270
- 67
271
- 49
272
- 2
273
- 0
274
- 49
275
- 3
276
- 4
277
- 15
278
- 99
279
- 7
280
- 9
281
- 7
282
- 10
283
- 65
284
- 67
285
- 49
286
- 2
287
- 0
288
- 49
289
- 3
290
- 4
291
- 15
292
- 99
293
- 7
294
- 11
295
- 7
296
- 12
297
- 65
298
- 67
299
- 49
300
- 2
301
- 0
302
- 49
303
- 3
304
- 4
305
- 11
306
- I
307
- 5
308
- I
309
- 0
310
- I
311
- 0
312
- I
313
- 0
314
- n
315
- p
316
- 13
317
- x
318
- 10
319
- initialize
320
- M
321
- 1
322
- n
323
- n
324
- x
325
- 10
326
- initialize
327
- i
328
- 159
329
- 23
330
- 1
331
- 10
332
- 14
333
- 44
334
- 43
335
- 0
336
- 78
337
- 49
338
- 1
339
- 1
340
- 19
341
- 1
342
- 15
343
- 20
344
- 1
345
- 7
346
- 2
347
- 14
348
- 2
349
- 49
350
- 3
351
- 1
352
- 13
353
- 10
354
- 43
355
- 15
356
- 20
357
- 1
358
- 7
359
- 4
360
- 49
361
- 3
362
- 1
363
- 13
364
- 18
365
- 3
366
- 49
367
- 5
368
- 2
369
- 15
370
- 8
371
- 47
372
- 18
373
- 2
374
- 16
375
- 2
376
- 15
377
- 54
378
- 89
379
- 6
380
- 15
381
- 44
382
- 43
383
- 0
384
- 80
385
- 49
386
- 1
387
- 1
388
- 13
389
- 7
390
- 7
391
- 7
392
- 8
393
- 64
394
- 49
395
- 5
396
- 2
397
- 15
398
- 13
399
- 7
400
- 9
401
- 7
402
- 10
403
- 64
404
- 49
405
- 5
406
- 2
407
- 15
408
- 39
409
- 11
410
- 49
411
- 12
412
- 1
413
- 38
414
- 11
415
- 15
416
- 20
417
- 1
418
- 7
419
- 13
420
- 49
421
- 3
422
- 1
423
- 13
424
- 10
425
- 142
426
- 15
427
- 45
428
- 14
429
- 15
430
- 43
431
- 16
432
- 13
433
- 71
434
- 17
435
- 47
436
- 9
437
- 130
438
- 47
439
- 49
440
- 18
441
- 0
442
- 13
443
- 39
444
- 11
445
- 7
446
- 9
447
- 49
448
- 3
449
- 1
450
- 39
451
- 11
452
- 47
453
- 49
454
- 6
455
- 2
456
- 15
457
- 8
458
- 142
459
- 39
460
- 11
461
- 7
462
- 9
463
- 49
464
- 3
465
- 1
466
- 39
467
- 11
468
- 49
469
- 17
470
- 2
471
- 38
472
- 19
473
- 15
474
- 39
475
- 11
476
- 7
477
- 7
478
- 49
479
- 3
480
- 1
481
- 38
482
- 20
483
- 15
484
- 54
485
- 89
486
- 6
487
- 11
488
- I
489
- 6
490
- I
491
- 2
492
- I
493
- 1
494
- I
495
- 2
496
- n
497
- p
498
- 21
499
- x
500
- 4
501
- Hash
502
- x
503
- 16
504
- new_from_literal
505
- x
506
- 12
507
- expire_after
508
- x
509
- 2
510
- []
511
- x
512
- 7
513
- expires
514
- x
515
- 3
516
- []=
517
- x
518
- 10
519
- initialize
520
- x
521
- 9
522
- namespace
523
- s
524
- 12
525
- rack:session
526
- x
527
- 15
528
- memcache_server
529
- s
530
- 15
531
- localhost:11211
532
- x
533
- 16
534
- @default_options
535
- x
536
- 5
537
- merge
538
- x
539
- 5
540
- cache
541
- x
542
- 5
543
- Dalli
544
- n
545
- x
546
- 6
547
- Client
548
- x
549
- 3
550
- new
551
- x
552
- 8
553
- allocate
554
- x
555
- 5
556
- @pool
557
- x
558
- 10
559
- @namespace
560
- p
561
- 29
562
- I
563
- -1
564
- I
565
- 9
566
- I
567
- e
568
- I
569
- b
570
- I
571
- 30
572
- I
573
- d
574
- I
575
- 34
576
- I
577
- 12
578
- I
579
- 3c
580
- I
581
- 10
582
- I
583
- 46
584
- I
585
- 11
586
- I
587
- 4f
588
- I
589
- 12
590
- I
591
- 54
592
- I
593
- f
594
- I
595
- 57
596
- I
597
- 14
598
- I
599
- 62
600
- I
601
- 15
602
- I
603
- 72
604
- I
605
- 16
606
- I
607
- 8e
608
- I
609
- 14
610
- I
611
- 91
612
- I
613
- 18
614
- I
615
- 9b
616
- I
617
- 1a
618
- I
619
- 9f
620
- x
621
- 82
622
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
623
- p
624
- 2
625
- x
626
- 3
627
- app
628
- x
629
- 7
630
- options
631
- x
632
- 17
633
- method_visibility
634
- x
635
- 15
636
- add_defn_method
637
- x
638
- 5
639
- reset
640
- M
641
- 1
642
- n
643
- n
644
- x
645
- 5
646
- reset
647
- i
648
- 6
649
- 39
650
- 0
651
- 49
652
- 1
653
- 0
654
- 11
655
- I
656
- 1
657
- I
658
- 0
659
- I
660
- 0
661
- I
662
- 0
663
- n
664
- p
665
- 2
666
- x
667
- 5
668
- @pool
669
- x
670
- 5
671
- reset
672
- p
673
- 5
674
- I
675
- -1
676
- I
677
- 1d
678
- I
679
- 0
680
- I
681
- 1e
682
- I
683
- 6
684
- x
685
- 82
686
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
687
- p
688
- 0
689
- x
690
- 7
691
- private
692
- x
693
- 11
694
- get_session
695
- M
696
- 1
697
- n
698
- n
699
- x
700
- 11
701
- get_session
702
- i
703
- 111
704
- 20
705
- 1
706
- 13
707
- 10
708
- 11
709
- 15
710
- 5
711
- 48
712
- 0
713
- 19
714
- 1
715
- 15
716
- 26
717
- 93
718
- 0
719
- 15
720
- 29
721
- 42
722
- 0
723
- 39
724
- 1
725
- 20
726
- 1
727
- 49
728
- 2
729
- 1
730
- 13
731
- 10
732
- 37
733
- 15
734
- 44
735
- 43
736
- 3
737
- 78
738
- 49
739
- 4
740
- 1
741
- 19
742
- 2
743
- 30
744
- 8
745
- 100
746
- 26
747
- 93
748
- 1
749
- 15
750
- 24
751
- 13
752
- 45
753
- 5
754
- 6
755
- 43
756
- 7
757
- 12
758
- 49
759
- 8
760
- 1
761
- 10
762
- 61
763
- 8
764
- 95
765
- 15
766
- 45
767
- 9
768
- 10
769
- 49
770
- 11
771
- 0
772
- 7
773
- 12
774
- 24
775
- 49
776
- 13
777
- 0
778
- 47
779
- 101
780
- 14
781
- 63
782
- 2
783
- 49
784
- 15
785
- 1
786
- 15
787
- 44
788
- 43
789
- 3
790
- 78
791
- 49
792
- 4
793
- 1
794
- 19
795
- 2
796
- 25
797
- 8
798
- 100
799
- 15
800
- 92
801
- 1
802
- 27
803
- 34
804
- 92
805
- 0
806
- 27
807
- 15
808
- 20
809
- 1
810
- 20
811
- 2
812
- 35
813
- 2
814
- 11
815
- I
816
- 8
817
- I
818
- 3
819
- I
820
- 2
821
- I
822
- 2
823
- n
824
- p
825
- 16
826
- x
827
- 12
828
- generate_sid
829
- x
830
- 5
831
- @pool
832
- x
833
- 3
834
- get
835
- x
836
- 4
837
- Hash
838
- x
839
- 16
840
- new_from_literal
841
- x
842
- 5
843
- Dalli
844
- n
845
- x
846
- 10
847
- DalliError
848
- x
849
- 3
850
- ===
851
- x
852
- 5
853
- Rails
854
- n
855
- x
856
- 6
857
- logger
858
- s
859
- 25
860
- Session::DalliStore#get:
861
- x
862
- 7
863
- message
864
- x
865
- 4
866
- to_s
867
- x
868
- 4
869
- warn
870
- p
871
- 15
872
- I
873
- -1
874
- I
875
- 23
876
- I
877
- 0
878
- I
879
- 24
880
- I
881
- c
882
- I
883
- 26
884
- I
885
- 2f
886
- I
887
- 27
888
- I
889
- 3e
890
- I
891
- 28
892
- I
893
- 53
894
- I
895
- 29
896
- I
897
- 68
898
- I
899
- 2b
900
- I
901
- 6f
902
- x
903
- 82
904
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
905
- p
906
- 3
907
- x
908
- 3
909
- env
910
- x
911
- 3
912
- sid
913
- x
914
- 7
915
- session
916
- x
917
- 11
918
- set_session
919
- M
920
- 1
921
- n
922
- n
923
- x
924
- 11
925
- set_session
926
- i
927
- 113
928
- 23
929
- 3
930
- 10
931
- 8
932
- 1
933
- 19
934
- 3
935
- 15
936
- 26
937
- 93
938
- 0
939
- 15
940
- 29
941
- 59
942
- 0
943
- 20
944
- 3
945
- 13
946
- 10
947
- 31
948
- 15
949
- 20
950
- 0
951
- 45
952
- 0
953
- 1
954
- 49
955
- 2
956
- 1
957
- 19
958
- 3
959
- 15
960
- 20
961
- 3
962
- 7
963
- 3
964
- 49
965
- 2
966
- 1
967
- 19
968
- 4
969
- 15
970
- 39
971
- 4
972
- 20
973
- 1
974
- 20
975
- 2
976
- 20
977
- 4
978
- 49
979
- 5
980
- 3
981
- 15
982
- 20
983
- 1
984
- 30
985
- 8
986
- 109
987
- 26
988
- 93
989
- 1
990
- 15
991
- 24
992
- 13
993
- 45
994
- 6
995
- 7
996
- 43
997
- 8
998
- 12
999
- 49
1000
- 9
1001
- 1
1002
- 10
1003
- 78
1004
- 8
1005
- 104
1006
- 15
1007
- 45
1008
- 10
1009
- 11
1010
- 49
1011
- 12
1012
- 0
1013
- 7
1014
- 13
1015
- 24
1016
- 49
1017
- 14
1018
- 0
1019
- 47
1020
- 101
1021
- 15
1022
- 63
1023
- 2
1024
- 49
1025
- 16
1026
- 1
1027
- 15
1028
- 3
1029
- 25
1030
- 8
1031
- 109
1032
- 15
1033
- 92
1034
- 1
1035
- 27
1036
- 34
1037
- 92
1038
- 0
1039
- 27
1040
- 11
1041
- I
1042
- b
1043
- I
1044
- 5
1045
- I
1046
- 3
1047
- I
1048
- 4
1049
- n
1050
- p
1051
- 17
1052
- x
1053
- 23
1054
- ENV_SESSION_OPTIONS_KEY
1055
- n
1056
- x
1057
- 2
1058
- []
1059
- x
1060
- 12
1061
- expire_after
1062
- x
1063
- 5
1064
- @pool
1065
- x
1066
- 3
1067
- set
1068
- x
1069
- 5
1070
- Dalli
1071
- n
1072
- x
1073
- 10
1074
- DalliError
1075
- x
1076
- 3
1077
- ===
1078
- x
1079
- 5
1080
- Rails
1081
- n
1082
- x
1083
- 6
1084
- logger
1085
- s
1086
- 25
1087
- Session::DalliStore#set:
1088
- x
1089
- 7
1090
- message
1091
- x
1092
- 4
1093
- to_s
1094
- x
1095
- 4
1096
- warn
1097
- p
1098
- 17
1099
- I
1100
- -1
1101
- I
1102
- 2e
1103
- I
1104
- 8
1105
- I
1106
- 2f
1107
- I
1108
- 20
1109
- I
1110
- 30
1111
- I
1112
- 2a
1113
- I
1114
- 31
1115
- I
1116
- 36
1117
- I
1118
- 32
1119
- I
1120
- 40
1121
- I
1122
- 33
1123
- I
1124
- 4f
1125
- I
1126
- 34
1127
- I
1128
- 64
1129
- I
1130
- 35
1131
- I
1132
- 71
1133
- x
1134
- 82
1135
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1136
- p
1137
- 5
1138
- x
1139
- 3
1140
- env
1141
- x
1142
- 3
1143
- sid
1144
- x
1145
- 12
1146
- session_data
1147
- x
1148
- 7
1149
- options
1150
- x
1151
- 6
1152
- expiry
1153
- x
1154
- 7
1155
- destroy
1156
- M
1157
- 1
1158
- n
1159
- n
1160
- x
1161
- 7
1162
- destroy
1163
- i
1164
- 85
1165
- 26
1166
- 93
1167
- 0
1168
- 15
1169
- 29
1170
- 31
1171
- 0
1172
- 5
1173
- 20
1174
- 0
1175
- 47
1176
- 49
1177
- 0
1178
- 1
1179
- 19
1180
- 1
1181
- 9
1182
- 27
1183
- 39
1184
- 1
1185
- 20
1186
- 1
1187
- 49
1188
- 2
1189
- 1
1190
- 8
1191
- 28
1192
- 1
1193
- 30
1194
- 8
1195
- 81
1196
- 26
1197
- 93
1198
- 1
1199
- 15
1200
- 24
1201
- 13
1202
- 45
1203
- 3
1204
- 4
1205
- 43
1206
- 5
1207
- 12
1208
- 49
1209
- 6
1210
- 1
1211
- 10
1212
- 50
1213
- 8
1214
- 76
1215
- 15
1216
- 45
1217
- 7
1218
- 8
1219
- 49
1220
- 9
1221
- 0
1222
- 7
1223
- 10
1224
- 24
1225
- 49
1226
- 11
1227
- 0
1228
- 47
1229
- 101
1230
- 12
1231
- 63
1232
- 2
1233
- 49
1234
- 13
1235
- 1
1236
- 15
1237
- 3
1238
- 25
1239
- 8
1240
- 81
1241
- 15
1242
- 92
1243
- 1
1244
- 27
1245
- 34
1246
- 92
1247
- 0
1248
- 27
1249
- 11
1250
- I
1251
- 7
1252
- I
1253
- 2
1254
- I
1255
- 1
1256
- I
1257
- 1
1258
- n
1259
- p
1260
- 14
1261
- x
1262
- 18
1263
- current_session_id
1264
- x
1265
- 5
1266
- @pool
1267
- x
1268
- 6
1269
- delete
1270
- x
1271
- 5
1272
- Dalli
1273
- n
1274
- x
1275
- 10
1276
- DalliError
1277
- x
1278
- 3
1279
- ===
1280
- x
1281
- 5
1282
- Rails
1283
- n
1284
- x
1285
- 6
1286
- logger
1287
- s
1288
- 28
1289
- Session::DalliStore#delete:
1290
- x
1291
- 7
1292
- message
1293
- x
1294
- 4
1295
- to_s
1296
- x
1297
- 4
1298
- warn
1299
- p
1300
- 15
1301
- I
1302
- -1
1303
- I
1304
- 38
1305
- I
1306
- 0
1307
- I
1308
- 39
1309
- I
1310
- 12
1311
- I
1312
- 3a
1313
- I
1314
- 1b
1315
- I
1316
- 39
1317
- I
1318
- 24
1319
- I
1320
- 3c
1321
- I
1322
- 33
1323
- I
1324
- 3d
1325
- I
1326
- 48
1327
- I
1328
- 3e
1329
- I
1330
- 55
1331
- x
1332
- 82
1333
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1334
- p
1335
- 2
1336
- x
1337
- 3
1338
- env
1339
- x
1340
- 3
1341
- sid
1342
- p
1343
- 13
1344
- I
1345
- 2
1346
- I
1347
- 9
1348
- I
1349
- 10
1350
- I
1351
- 1d
1352
- I
1353
- 1e
1354
- I
1355
- 21
1356
- I
1357
- 22
1358
- I
1359
- 23
1360
- I
1361
- 30
1362
- I
1363
- 2e
1364
- I
1365
- 3e
1366
- I
1367
- 38
1368
- I
1369
- 4c
1370
- x
1371
- 82
1372
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1373
- p
1374
- 0
1375
- x
1376
- 13
1377
- attach_method
1378
- p
1379
- 3
1380
- I
1381
- 2
1382
- I
1383
- 8
1384
- I
1385
- 1f
1386
- x
1387
- 82
1388
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1389
- p
1390
- 0
1391
- x
1392
- 13
1393
- attach_method
1394
- p
1395
- 3
1396
- I
1397
- 2
1398
- I
1399
- 7
1400
- I
1401
- 1c
1402
- x
1403
- 82
1404
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1405
- p
1406
- 0
1407
- x
1408
- 13
1409
- attach_method
1410
- p
1411
- 9
1412
- I
1413
- 0
1414
- I
1415
- 1
1416
- I
1417
- 9
1418
- I
1419
- 2
1420
- I
1421
- 12
1422
- I
1423
- 3
1424
- I
1425
- 1b
1426
- I
1427
- 6
1428
- I
1429
- 37
1430
- x
1431
- 82
1432
- /Users/mperham/src/git/dalli/lib/action_dispatch/middleware/session/dalli_store.rb
1433
- p
1434
- 0