redis-store 0.3.6

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.

Potentially problematic release.


This version of redis-store might be problematic. Click here for more details.

@@ -0,0 +1,173 @@
1
+ require File.join(File.dirname(__FILE__), "/../../spec_helper")
2
+
3
+ module ActiveSupport
4
+ module Cache
5
+ describe "ActiveSupport::Cache::RedisStore" do
6
+ before(:each) do
7
+ @store = ActiveSupport::Cache::RedisStore.new
8
+ @dstore = ActiveSupport::Cache::RedisStore.new "localhost:6380/1", "localhost:6381/1"
9
+ @rabbit = OpenStruct.new :name => "bunny"
10
+ @white_rabbit = OpenStruct.new :color => "white"
11
+ with_store_management do |store|
12
+ store.write "rabbit", @rabbit
13
+ store.delete "counter"
14
+ store.delete "rub-a-dub"
15
+ end
16
+ end
17
+
18
+ it "should accept connection params" do
19
+ redis = instantiate_store
20
+ redis.host.should == "127.0.0.1"
21
+ redis.port.should == 6379
22
+ redis.db.should == 0
23
+
24
+ redis = instantiate_store "localhost"
25
+ redis.host.should == "localhost"
26
+
27
+ redis = instantiate_store "localhost:6380"
28
+ redis.host.should == "localhost"
29
+ redis.port.should == 6380
30
+
31
+ redis = instantiate_store "localhost:6380/13"
32
+ redis.host.should == "localhost"
33
+ redis.port.should == 6380
34
+ redis.db.should == 13
35
+ end
36
+
37
+ it "should instantiate a ring" do
38
+ store = instantiate_store
39
+ store.should be_kind_of(MarshaledRedis)
40
+ store = instantiate_store ["localhost:6379/0", "localhost:6379/1"]
41
+ store.should be_kind_of(DistributedMarshaledRedis)
42
+ end
43
+
44
+ it "should read the data" do
45
+ with_store_management do |store|
46
+ store.read("rabbit").should === @rabbit
47
+ end
48
+ end
49
+
50
+ it "should write the data" do
51
+ with_store_management do |store|
52
+ store.write "rabbit", @white_rabbit
53
+ store.read("rabbit").should === @white_rabbit
54
+ end
55
+ end
56
+
57
+ it "should write the data with expiration time" do
58
+ with_store_management do |store|
59
+ store.write "rabbit", @white_rabbit, :expires_in => 1.second
60
+ store.read("rabbit").should === @white_rabbit ; sleep 2
61
+ store.read("rabbit").should be_nil
62
+ end
63
+ end
64
+
65
+ it "should not write data if :unless_exist option is true" do
66
+ with_store_management do |store|
67
+ store.write "rabbit", @white_rabbit, :unless_exist => true
68
+ store.read("rabbit").should === @rabbit
69
+ end
70
+ end
71
+
72
+ it "should read raw data" do
73
+ with_store_management do |store|
74
+ store.read("rabbit", :raw => true).should == "\004\bU:\017OpenStruct{\006:\tname\"\nbunny"
75
+ end
76
+ end
77
+
78
+ it "should write raw data" do
79
+ with_store_management do |store|
80
+ store.write "rabbit", @white_rabbit, :raw => true
81
+ store.read("rabbit", :raw => true).should == %(#<OpenStruct color="white">)
82
+ end
83
+ end
84
+
85
+ it "should delete data" do
86
+ with_store_management do |store|
87
+ store.delete "rabbit"
88
+ store.read("rabbit").should be_nil
89
+ end
90
+ end
91
+
92
+ it "should delete matched data" do
93
+ with_store_management do |store|
94
+ store.delete_matched "rabb*"
95
+ store.read("rabbit").should be_nil
96
+ end
97
+ end
98
+
99
+ it "should verify existence of an object in the store" do
100
+ with_store_management do |store|
101
+ store.exist?("rabbit").should be_true
102
+ store.exist?("rab-a-dub").should be_false
103
+ end
104
+ end
105
+
106
+ it "should increment a key" do
107
+ with_store_management do |store|
108
+ 3.times { store.increment "counter" }
109
+ store.read("counter", :raw => true).to_i.should == 3
110
+ end
111
+ end
112
+
113
+ it "should decrement a key" do
114
+ with_store_management do |store|
115
+ 3.times { store.increment "counter" }
116
+ 2.times { store.decrement "counter" }
117
+ store.read("counter", :raw => true).to_i.should == 1
118
+ end
119
+ end
120
+
121
+ it "should increment a key by given value" do
122
+ with_store_management do |store|
123
+ store.increment "counter", 3
124
+ store.read("counter", :raw => true).to_i.should == 3
125
+ end
126
+ end
127
+
128
+ it "should decrement a key by given value" do
129
+ with_store_management do |store|
130
+ 3.times { store.increment "counter" }
131
+ store.decrement "counter", 2
132
+ store.read("counter", :raw => true).to_i.should == 1
133
+ end
134
+ end
135
+
136
+ it "should clear the store" do
137
+ with_store_management do |store|
138
+ store.clear
139
+ store.instance_variable_get(:@data).keys("*").should be_empty
140
+ end
141
+ end
142
+
143
+ it "should return store stats" do
144
+ with_store_management do |store|
145
+ store.stats.should_not be_empty
146
+ end
147
+ end
148
+
149
+ it "should fetch data" do
150
+ with_store_management do |store|
151
+ store.fetch("rabbit").should == @rabbit
152
+ store.fetch("rub-a-dub").should be_nil
153
+ store.fetch("rub-a-dub") { "Flora de Cana" }
154
+ store.fetch("rub-a-dub").should === "Flora de Cana"
155
+ store.fetch("rabbit", :force => true).should be_nil # force cache miss
156
+ store.fetch("rabbit", :force => true, :expires_in => 1.second) { @white_rabbit }
157
+ store.fetch("rabbit").should === @white_rabbit ; sleep 2
158
+ store.fetch("rabbit").should be_nil
159
+ end
160
+ end
161
+
162
+ private
163
+ def instantiate_store(addresses = nil)
164
+ ActiveSupport::Cache::RedisStore.new(addresses).instance_variable_get(:@data)
165
+ end
166
+
167
+ def with_store_management
168
+ yield @store
169
+ yield @dstore
170
+ end
171
+ end
172
+ end
173
+ end
@@ -0,0 +1,194 @@
1
+ require File.join(File.dirname(__FILE__), "/../../spec_helper")
2
+
3
+ class App
4
+ def initialize
5
+ @values = {}
6
+ end
7
+
8
+ def set(key, value)
9
+ @values[key] = value
10
+ end
11
+
12
+ def get(key)
13
+ @values[key]
14
+ end
15
+ end
16
+
17
+ module Sinatra
18
+ module Cache
19
+ describe "Sinatra::Cache::RedisStore" do
20
+ before(:each) do
21
+ @store = Sinatra::Cache::RedisStore.new
22
+ @dstore = Sinatra::Cache::RedisStore.new "localhost:6380/1", "localhost:6381/1"
23
+ @rabbit = OpenStruct.new :name => "bunny"
24
+ @white_rabbit = OpenStruct.new :color => "white"
25
+ with_store_management do |store|
26
+ store.write "rabbit", @rabbit
27
+ store.delete "counter"
28
+ store.delete "rub-a-dub"
29
+ end
30
+ end
31
+
32
+ it "should register as extension" do
33
+ app = App.new
34
+ Sinatra::Cache.register(app)
35
+ store = app.get(:cache)
36
+ store.should be_kind_of(RedisStore)
37
+ end
38
+
39
+ it "should accept connection params" do
40
+ redis = instantiate_store
41
+ redis.host.should == "127.0.0.1"
42
+ redis.port.should == 6379
43
+ redis.db.should == 0
44
+
45
+ redis = instantiate_store "localhost"
46
+ redis.host.should == "localhost"
47
+
48
+ redis = instantiate_store "localhost:6380"
49
+ redis.host.should == "localhost"
50
+ redis.port.should == 6380
51
+
52
+ redis = instantiate_store "localhost:6380/13"
53
+ redis.host.should == "localhost"
54
+ redis.port.should == 6380
55
+ redis.db.should == 13
56
+ end
57
+
58
+ it "should instantiate a ring" do
59
+ store = instantiate_store
60
+ store.should be_kind_of(MarshaledRedis)
61
+ store = instantiate_store ["localhost:6379/0", "localhost:6379/1"]
62
+ store.should be_kind_of(DistributedMarshaledRedis)
63
+ end
64
+
65
+ it "should read the data" do
66
+ with_store_management do |store|
67
+ store.read("rabbit").should === @rabbit
68
+ end
69
+ end
70
+
71
+ it "should write the data" do
72
+ with_store_management do |store|
73
+ store.write "rabbit", @white_rabbit
74
+ store.read("rabbit").should === @white_rabbit
75
+ end
76
+ end
77
+
78
+ it "should write the data with expiration time" do
79
+ with_store_management do |store|
80
+ store.write "rabbit", @white_rabbit, :expires_in => 1.second
81
+ store.read("rabbit").should === @white_rabbit ; sleep 2
82
+ store.read("rabbit").should be_nil
83
+ end
84
+ end
85
+
86
+ it "should not write data if :unless_exist option is true" do
87
+ with_store_management do |store|
88
+ store.write "rabbit", @white_rabbit, :unless_exist => true
89
+ store.read("rabbit").should === @rabbit
90
+ end
91
+ end
92
+
93
+ it "should read raw data" do
94
+ with_store_management do |store|
95
+ store.read("rabbit", :raw => true).should == "\004\bU:\017OpenStruct{\006:\tname\"\nbunny"
96
+ end
97
+ end
98
+
99
+ it "should write raw data" do
100
+ with_store_management do |store|
101
+ store.write "rabbit", @white_rabbit, :raw => true
102
+ store.read("rabbit", :raw => true).should == %(#<OpenStruct color="white">)
103
+ end
104
+ end
105
+
106
+ it "should delete data" do
107
+ with_store_management do |store|
108
+ store.delete "rabbit"
109
+ store.read("rabbit").should be_nil
110
+ end
111
+ end
112
+
113
+ it "should delete matched data" do
114
+ with_store_management do |store|
115
+ store.delete_matched "rabb*"
116
+ store.read("rabbit").should be_nil
117
+ end
118
+ end
119
+
120
+ it "should verify existence of an object in the store" do
121
+ with_store_management do |store|
122
+ store.exist?("rabbit").should be_true
123
+ store.exist?("rab-a-dub").should be_false
124
+ end
125
+ end
126
+
127
+ it "should increment a key" do
128
+ with_store_management do |store|
129
+ 3.times { store.increment "counter" }
130
+ store.read("counter", :raw => true).to_i.should == 3
131
+ end
132
+ end
133
+
134
+ it "should decrement a key" do
135
+ with_store_management do |store|
136
+ 3.times { store.increment "counter" }
137
+ 2.times { store.decrement "counter" }
138
+ store.read("counter", :raw => true).to_i.should == 1
139
+ end
140
+ end
141
+
142
+ it "should increment a key by given value" do
143
+ with_store_management do |store|
144
+ store.increment "counter", 3
145
+ store.read("counter", :raw => true).to_i.should == 3
146
+ end
147
+ end
148
+
149
+ it "should decrement a key by given value" do
150
+ with_store_management do |store|
151
+ 3.times { store.increment "counter" }
152
+ store.decrement "counter", 2
153
+ store.read("counter", :raw => true).to_i.should == 1
154
+ end
155
+ end
156
+
157
+ it "should clear the store" do
158
+ with_store_management do |store|
159
+ store.clear
160
+ store.instance_variable_get(:@data).keys("*").should be_empty
161
+ end
162
+ end
163
+
164
+ it "should return store stats" do
165
+ with_store_management do |store|
166
+ store.stats.should_not be_empty
167
+ end
168
+ end
169
+
170
+ it "should fetch data" do
171
+ with_store_management do |store|
172
+ store.fetch("rabbit").should == @rabbit
173
+ store.fetch("rub-a-dub").should be_nil
174
+ store.fetch("rub-a-dub") { "Flora de Cana" }
175
+ store.fetch("rub-a-dub").should === "Flora de Cana"
176
+ store.fetch("rabbit", :force => true).should be_nil # force cache miss
177
+ store.fetch("rabbit", :force => true, :expires_in => 1.second) { @white_rabbit }
178
+ store.fetch("rabbit").should === @white_rabbit ; sleep 2
179
+ store.fetch("rabbit").should be_nil
180
+ end
181
+ end
182
+
183
+ private
184
+ def instantiate_store(addresses = nil)
185
+ Sinatra::Cache::RedisStore.new(addresses).instance_variable_get(:@data)
186
+ end
187
+
188
+ def with_store_management
189
+ yield @store
190
+ yield @dstore
191
+ end
192
+ end
193
+ end
194
+ end
@@ -0,0 +1,132 @@
1
+ # Redis configuration file example
2
+
3
+ # By default Redis does not run as a daemon. Use 'yes' if you need it.
4
+ # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
5
+ daemonize yes
6
+
7
+ # When run as a daemon, Redis write a pid file in /var/run/redis.pid by default.
8
+ # You can specify a custom pid file location here.
9
+ pidfile ./tmp/redis-master.pid
10
+
11
+ # Accept connections on the specified port, default is 6379
12
+ port 6380
13
+
14
+ # If you want you can bind a single interface, if the bind option is not
15
+ # specified all the interfaces will listen for connections.
16
+ #
17
+ bind 127.0.0.1
18
+
19
+ # Close the connection after a client is idle for N seconds (0 to disable)
20
+ timeout 300
21
+
22
+ # Save the DB on disk:
23
+ #
24
+ # save <seconds> <changes>
25
+ #
26
+ # Will save the DB if both the given number of seconds and the given
27
+ # number of write operations against the DB occurred.
28
+ #
29
+ # In the example below the behaviour will be to save:
30
+ # after 900 sec (15 min) if at least 1 key changed
31
+ # after 300 sec (5 min) if at least 10 keys changed
32
+ # after 60 sec if at least 10000 keys changed
33
+ save 900 1
34
+ save 300 10
35
+ save 60 10000
36
+
37
+ # The filename where to dump the DB
38
+ dbfilename master.rdb
39
+
40
+ # For default save/load DB in/from the working directory
41
+ # Note that you must specify a directory not a file name.
42
+ dir ./tmp
43
+
44
+ # Set server verbosity to 'debug'
45
+ # it can be one of:
46
+ # debug (a lot of information, useful for development/testing)
47
+ # notice (moderately verbose, what you want in production probably)
48
+ # warning (only very important / critical messages are logged)
49
+ loglevel debug
50
+
51
+ # Specify the log file name. Also 'stdout' can be used to force
52
+ # the demon to log on the standard output. Note that if you use standard
53
+ # output for logging but daemonize, logs will be sent to /dev/null
54
+ logfile stdout
55
+
56
+ # Set the number of databases. The default database is DB 0, you can select
57
+ # a different one on a per-connection basis using SELECT <dbid> where
58
+ # dbid is a number between 0 and 'databases'-1
59
+ databases 16
60
+
61
+ ################################# REPLICATION #################################
62
+
63
+ # Master-Slave replication. Use slaveof to make a Redis instance a copy of
64
+ # another Redis server. Note that the configuration is local to the slave
65
+ # so for example it is possible to configure the slave to save the DB with a
66
+ # different interval, or to listen to another port, and so on.
67
+
68
+ # slaveof <masterip> <masterport>
69
+
70
+ ################################## SECURITY ###################################
71
+
72
+ # Require clients to issue AUTH <PASSWORD> before processing any other
73
+ # commands. This might be useful in environments in which you do not trust
74
+ # others with access to the host running redis-server.
75
+ #
76
+ # This should stay commented out for backward compatibility and because most
77
+ # people do not need auth (e.g. they run their own servers).
78
+
79
+ # requirepass foobared
80
+
81
+ ################################### LIMITS ####################################
82
+
83
+ # Set the max number of connected clients at the same time. By default there
84
+ # is no limit, and it's up to the number of file descriptors the Redis process
85
+ # is able to open. The special value '0' means no limts.
86
+ # Once the limit is reached Redis will close all the new connections sending
87
+ # an error 'max number of clients reached'.
88
+
89
+ # maxclients 128
90
+
91
+ # Don't use more memory than the specified amount of bytes.
92
+ # When the memory limit is reached Redis will try to remove keys with an
93
+ # EXPIRE set. It will try to start freeing keys that are going to expire
94
+ # in little time and preserve keys with a longer time to live.
95
+ # Redis will also try to remove objects from free lists if possible.
96
+ #
97
+ # If all this fails, Redis will start to reply with errors to commands
98
+ # that will use more memory, like SET, LPUSH, and so on, and will continue
99
+ # to reply to most read-only commands like GET.
100
+ #
101
+ # WARNING: maxmemory can be a good idea mainly if you want to use Redis as a
102
+ # 'state' server or cache, not as a real DB. When Redis is used as a real
103
+ # database the memory usage will grow over the weeks, it will be obvious if
104
+ # it is going to use too much memory in the long run, and you'll have the time
105
+ # to upgrade. With maxmemory after the limit is reached you'll start to get
106
+ # errors for write operations, and this may even lead to DB inconsistency.
107
+
108
+ # maxmemory <bytes>
109
+
110
+ ############################### ADVANCED CONFIG ###############################
111
+
112
+ # Glue small output buffers together in order to send small replies in a
113
+ # single TCP packet. Uses a bit more CPU but most of the times it is a win
114
+ # in terms of number of queries per second. Use 'yes' if unsure.
115
+ glueoutputbuf yes
116
+
117
+ # Use object sharing. Can save a lot of memory if you have many common
118
+ # string in your dataset, but performs lookups against the shared objects
119
+ # pool so it uses more CPU and can be a bit slower. Usually it's a good
120
+ # idea.
121
+ #
122
+ # When object sharing is enabled (shareobjects yes) you can use
123
+ # shareobjectspoolsize to control the size of the pool used in order to try
124
+ # object sharing. A bigger pool size will lead to better sharing capabilities.
125
+ # In general you want this value to be at least the double of the number of
126
+ # very common strings you have in your dataset.
127
+ #
128
+ # WARNING: object sharing is experimental, don't enable this feature
129
+ # in production before of Redis 1.0-stable. Still please try this feature in
130
+ # your development environment so that we can test it better.
131
+ shareobjects no
132
+ shareobjectspoolsize 1024