appstats 0.23.1 → 0.23.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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- appstats (0.23.1)
4
+ appstats (0.23.2)
5
5
  daemons
6
6
  net-scp
7
7
  rails (>= 2.3.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- appstats (0.23.1)
4
+ appstats (0.23.2)
5
5
  daemons
6
6
  net-scp
7
7
  rails (>= 2.3.0)
@@ -1,5 +1,5 @@
1
1
  === 0.0.1 2011-01-05
2
-
2
+
3
3
  * 1 major enhancement:
4
4
  * Initial release
5
5
  * Followed http://drnicwilliams.com/2006/10/11/generating-new-gems/
@@ -1,6 +1,13 @@
1
1
  require 'rubygems'
2
2
  require 'active_record'
3
- require 'rails' unless Object.const_defined?('Rails')
3
+
4
+ #requiring rails is a Rails3 thing I believe
5
+ # so two checks, 1) the rails hasn't been required somewhere else, and 2) ignore a 'rescue'
6
+ # as we are using bundler so things should be setup properly
7
+ begin
8
+ require 'rails' unless Object.const_defined?('Rails')
9
+ rescue
10
+ end
4
11
 
5
12
  require "#{File.dirname(__FILE__)}/appstats/acts_as_appstatsable"
6
13
  require "#{File.dirname(__FILE__)}/appstats/acts_as_auditable"
@@ -49,16 +49,24 @@ unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:
49
49
  t.rcov = true
50
50
  t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/,features\/ --output ../public/coverage}
51
51
  end
52
-
52
+
53
53
  desc "The Build Succeeded, so tell our monitoring service"
54
54
  task :success do
55
- system 'echo "Appstats succeeded, http://cc.cenx.localnet" > /home/deployer/monitor/log/Appstats.cc'
55
+ if File.exists?("/home/deployer/monitor/log")
56
+ system 'echo "Appstats succeeded, http://cc.cenx.localnet" > /home/deployer/monitor/log/Appstats.cc'
57
+ else
58
+ print "BUILD SUCCEEDED, but log directory (/home/deployer/monitor/log) does not exist"
59
+ end
56
60
  end
57
61
 
58
62
  desc "The Build failed, so tell our monitoring service"
59
63
  task :failure do
60
- system "curl http://cc.cenx.localnet/appstats_local > /home/deployer/monitor/log/Appstats.cc"
61
- end
64
+ if File.exists?("/home/deployer/monitor/log")
65
+ system "curl http://cc.cenx.localnet/appstats_local > /home/deployer/monitor/log/Appstats.cc"
66
+ else
67
+ raise "BUILD FAILED, but log directory (/home/deployer/monitor/log) does not exist"
68
+ end
69
+ end
62
70
 
63
71
  namespace :db do
64
72
 
@@ -1,3 +1,3 @@
1
1
  module Appstats
2
- VERSION = "0.23.1"
2
+ VERSION = "0.23.2"
3
3
  end
@@ -193,18 +193,18 @@ module Appstats
193
193
  end
194
194
 
195
195
  it "should understand an entry without contexts" do
196
- entry = Entry.create_from_logger_string("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search")
196
+ entry = Entry.create_from_logger_string("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search")
197
197
  Entry.count.should == @before_count + 1
198
198
  entry.action.should == "address_search"
199
- entry.raw_entry.should == "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search"
199
+ entry.raw_entry.should == "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search"
200
200
  entry.occurred_at.should == Time.parse("2010-09-21 23:15:20")
201
201
  end
202
202
 
203
203
  it "should understand contexts" do
204
- entry = Entry.create_from_logger_string("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live")
204
+ entry = Entry.create_from_logger_string("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live")
205
205
  Entry.count.should == @before_count + 1
206
206
  entry.action.should == "address_filter"
207
- entry.raw_entry.should == "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live"
207
+ entry.raw_entry.should == "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live"
208
208
  entry.occurred_at.should == Time.parse("2010-09-21 23:15:20")
209
209
  entry.contexts.size.should == 2
210
210
  entry.contexts[0].context_key = "app_name"
@@ -214,10 +214,10 @@ module Appstats
214
214
  end
215
215
 
216
216
  it "should handle 'action' as a context" do
217
- entry = Entry.create_from_logger_string('0.23.1 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : action=save_ovcen : app_name=cdb')
217
+ entry = Entry.create_from_logger_string('0.23.2 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : action=save_ovcen : app_name=cdb')
218
218
  Entry.count.should == @before_count + 1
219
219
  entry.action.should == "page-view"
220
- entry.raw_entry.should == "0.23.1 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : action=save_ovcen : app_name=cdb"
220
+ entry.raw_entry.should == "0.23.2 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : action=save_ovcen : app_name=cdb"
221
221
  entry.occurred_at.should == Time.parse("2011-02-24 12:59:57")
222
222
  entry.contexts.size.should == 2
223
223
  entry.contexts[0].context_key = "action"
@@ -228,10 +228,10 @@ module Appstats
228
228
  end
229
229
 
230
230
  it "should handle multiple of the same 'context'" do
231
- entry = Entry.create_from_logger_string('0.23.1 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : app_name=market : app_name=cdb')
231
+ entry = Entry.create_from_logger_string('0.23.2 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : app_name=market : app_name=cdb')
232
232
  Entry.count.should == @before_count + 1
233
233
  entry.action.should == "page-view"
234
- entry.raw_entry.should == "0.23.1 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : app_name=market : app_name=cdb"
234
+ entry.raw_entry.should == "0.23.2 setup[:,=,-n] 2011-02-24 12:59:57 action=page-view : app_name=market : app_name=cdb"
235
235
  entry.occurred_at.should == Time.parse("2011-02-24 12:59:57")
236
236
  entry.contexts.size.should == 2
237
237
  entry.contexts[0].context_key = "app_name"
@@ -122,12 +122,12 @@ module Appstats
122
122
 
123
123
  it "should accept numbers" do
124
124
  Appstats::Logger.entry(5, :blah => 6)
125
- Appstats::Logger.raw_read.should == ["0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=5 : blah=6"]
125
+ Appstats::Logger.raw_read.should == ["0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=5 : blah=6"]
126
126
  end
127
127
 
128
128
  it "should accept arrays" do
129
129
  Appstats::Logger.entry('search', :provider => [ 'one', 'two' ])
130
- Appstats::Logger.raw_read.should == ["0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=search : provider=one : provider=two"]
130
+ Appstats::Logger.raw_read.should == ["0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=search : provider=one : provider=two"]
131
131
  end
132
132
 
133
133
 
@@ -137,7 +137,7 @@ module Appstats
137
137
 
138
138
  it "should look similar to regular entry" do
139
139
  Appstats::Logger.exception_entry(RuntimeError.new("blah"),:on => "login")
140
- Appstats::Logger.raw_read.should == ["0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=appstats-exception : error=blah : on=login"]
140
+ Appstats::Logger.raw_read.should == ["0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=appstats-exception : error=blah : on=login"]
141
141
  end
142
142
 
143
143
  end
@@ -154,47 +154,47 @@ module Appstats
154
154
 
155
155
  it "should handle a statistics entry" do
156
156
  expected = { :action => "address_search", :timestamp => "2010-09-21 23:15:20" }
157
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search")
157
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search")
158
158
  actual.should == expected
159
159
  end
160
160
 
161
161
  it "should handle contexts" do
162
162
  expected = { :action => "address_filter", :timestamp => "2010-09-21 23:15:20", :server => "Live", :app_name => 'Market' }
163
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live")
163
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live")
164
164
  actual.should == expected
165
165
  end
166
166
 
167
167
  it "should handle multiple actions" do
168
168
  expected = { :action => ["address_filter", "blah"], :timestamp => "2010-09-21 23:15:20", :server => "Live", :app_name => 'Market' }
169
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : action=blah : app_name=Market : server=Live")
169
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : action=blah : app_name=Market : server=Live")
170
170
  actual.should == expected
171
171
  end
172
172
 
173
173
  it "should handle multiple of same context" do
174
174
  expected = { :action => "address_filter", :timestamp => "2010-09-21 23:15:20", :server => "Live", :app_name => ['Sin','Market'] }
175
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Sin : app_name=Market : server=Live")
175
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Sin : app_name=Market : server=Live")
176
176
  actual.should == expected
177
177
  end
178
178
 
179
179
  it "should handle no actions" do
180
180
  expected = { :action => "UNKNOWN_ACTION", :timestamp => "2010-09-21 23:15:20", :server => "Live", :app_name => 'Market' }
181
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 app_name=Market : server=Live")
181
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 app_name=Market : server=Live")
182
182
  actual.should == expected
183
183
  end
184
184
 
185
185
  it "should handle actions with the delimiter (and change the delimiter)" do
186
186
  expected = { :action => "address:=search-n", :timestamp => "2010-09-21 23:15:20" }
187
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=search-n")
187
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=search-n")
188
188
  actual.should == expected
189
189
 
190
190
  expected = { :action => "address::search==--n", :timestamp => "2010-09-21 23:15:20" }
191
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[:::,===,---n] 2010-09-21 23:15:20 action===address::search==--n")
191
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[:::,===,---n] 2010-09-21 23:15:20 action===address::search==--n")
192
192
  actual.should == expected
193
193
  end
194
194
 
195
195
  it "should handle contexts with the delimiter (and change the delimiter)" do
196
196
  expected = { :action => "address", :timestamp => "2010-09-21 23:15:20", :server => "market:eval=-n" }
197
- actual = Appstats::Logger.entry_to_hash("0.23.1 setup[::,==,--n] 2010-09-21 23:15:20 action==address :: server==market:eval=-n")
197
+ actual = Appstats::Logger.entry_to_hash("0.23.2 setup[::,==,--n] 2010-09-21 23:15:20 action==address :: server==market:eval=-n")
198
198
  actual.should == expected
199
199
  end
200
200
 
@@ -203,66 +203,66 @@ module Appstats
203
203
  describe "#entry_to_s" do
204
204
 
205
205
  it "should handle a statistics entry" do
206
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search"
206
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search"
207
207
  actual = Appstats::Logger.entry_to_s("address_search")
208
208
  actual.should == expected
209
209
  end
210
210
 
211
211
  it "should handle numbers" do
212
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=1 : note=2.2"
212
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=1 : note=2.2"
213
213
  actual = Appstats::Logger.entry_to_s(1,:note => 2.2)
214
214
  actual.should == expected
215
215
  end
216
216
 
217
217
  it "should handle default contexts" do
218
218
  Appstats::Logger.default_contexts[:app_name] = "market"
219
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search : app_name=market"
219
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search : app_name=market"
220
220
  actual = Appstats::Logger.entry_to_s("address_search")
221
221
  actual.should == expected
222
222
  end
223
223
 
224
224
  it "should handle contexts (and sort them by symbol)" do
225
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live"
225
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_filter : app_name=Market : server=Live"
226
226
  actual = Appstats::Logger.entry_to_s("address_filter", { :server => "Live", :app_name => 'Market' })
227
227
  actual.should == expected
228
228
  end
229
229
 
230
230
  it "should handle actions with the delimiter (and change the delimiter)" do
231
- expected = "0.23.1 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=search-n"
231
+ expected = "0.23.2 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=search-n"
232
232
  actual = Appstats::Logger.entry_to_s("address:=search-n")
233
233
  actual.should == expected
234
234
 
235
- expected = "0.23.1 setup[:::,===,---n] 2010-09-21 23:15:20 action===address::search==--n"
235
+ expected = "0.23.2 setup[:::,===,---n] 2010-09-21 23:15:20 action===address::search==--n"
236
236
  actual = Appstats::Logger.entry_to_s("address::search==--n")
237
237
  actual.should == expected
238
238
  end
239
239
 
240
240
  it "should handle contexts with the delimiter (and change the delimiter)" do
241
- expected = "0.23.1 setup[::,==,--n] 2010-09-21 23:15:20 action==address :: server==market:eval=-n"
241
+ expected = "0.23.2 setup[::,==,--n] 2010-09-21 23:15:20 action==address :: server==market:eval=-n"
242
242
  actual = Appstats::Logger.entry_to_s("address", :server => 'market:eval=-n')
243
243
  actual.should == expected
244
244
  end
245
245
 
246
246
  it "should ignore spaces" do
247
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address search"
247
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address search"
248
248
  actual = Appstats::Logger.entry_to_s("address search")
249
249
  actual.should == expected
250
250
  end
251
251
 
252
252
  it "should convert newlines in action" do
253
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_-nsearch"
253
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_-nsearch"
254
254
  actual = Appstats::Logger.entry_to_s("address_\nsearch")
255
255
  actual.should == expected
256
256
  end
257
257
 
258
258
  it "should convert newlines in context" do
259
- expected = "0.23.1 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search : blah=some-nlong-nstatement"
259
+ expected = "0.23.2 setup[:,=,-n] 2010-09-21 23:15:20 action=address_search : blah=some-nlong-nstatement"
260
260
  actual = Appstats::Logger.entry_to_s("address_search",:blah => "some\nlong\nstatement")
261
261
  actual.should == expected
262
262
  end
263
263
 
264
264
  it "should convert newlines based on the delimiter" do
265
- expected = "0.23.1 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=--nsearch-n"
265
+ expected = "0.23.2 setup[::,==,--n] 2010-09-21 23:15:20 action==address:=--nsearch-n"
266
266
  actual = Appstats::Logger.entry_to_s("address:=\nsearch-n")
267
267
  actual.should == expected
268
268
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appstats
3
3
  version: !ruby/object:Gem::Version
4
- hash: 65
4
+ hash: 71
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 23
9
- - 1
10
- version: 0.23.1
9
+ - 2
10
+ version: 0.23.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andrew Forward
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-30 00:00:00 Z
18
+ date: 2011-10-26 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rails
@@ -254,6 +254,222 @@ files:
254
254
  - db/migrations/20110510141236_create_audits.rb
255
255
  - db/migrations/20110510173343_add_test_object_columns.rb
256
256
  - db/schema.rb
257
+ - doc/benchmarks/Benchmark.php
258
+ - doc/benchmarks/Predis/Autoloader.php
259
+ - doc/benchmarks/Predis/Client.php
260
+ - doc/benchmarks/Predis/ClientException.php
261
+ - doc/benchmarks/Predis/ClientOptions.php
262
+ - doc/benchmarks/Predis/Commands/Command.php
263
+ - doc/benchmarks/Predis/Commands/ConnectionAuth.php
264
+ - doc/benchmarks/Predis/Commands/ConnectionEcho.php
265
+ - doc/benchmarks/Predis/Commands/ConnectionPing.php
266
+ - doc/benchmarks/Predis/Commands/ConnectionQuit.php
267
+ - doc/benchmarks/Predis/Commands/ConnectionSelect.php
268
+ - doc/benchmarks/Predis/Commands/HashDelete.php
269
+ - doc/benchmarks/Predis/Commands/HashExists.php
270
+ - doc/benchmarks/Predis/Commands/HashGet.php
271
+ - doc/benchmarks/Predis/Commands/HashGetAll.php
272
+ - doc/benchmarks/Predis/Commands/HashGetMultiple.php
273
+ - doc/benchmarks/Predis/Commands/HashIncrementBy.php
274
+ - doc/benchmarks/Predis/Commands/HashKeys.php
275
+ - doc/benchmarks/Predis/Commands/HashLength.php
276
+ - doc/benchmarks/Predis/Commands/HashSet.php
277
+ - doc/benchmarks/Predis/Commands/HashSetMultiple.php
278
+ - doc/benchmarks/Predis/Commands/HashSetPreserve.php
279
+ - doc/benchmarks/Predis/Commands/HashValues.php
280
+ - doc/benchmarks/Predis/Commands/ICommand.php
281
+ - doc/benchmarks/Predis/Commands/KeyDelete.php
282
+ - doc/benchmarks/Predis/Commands/KeyExists.php
283
+ - doc/benchmarks/Predis/Commands/KeyExpire.php
284
+ - doc/benchmarks/Predis/Commands/KeyExpireAt.php
285
+ - doc/benchmarks/Predis/Commands/KeyKeys.php
286
+ - doc/benchmarks/Predis/Commands/KeyKeysV12x.php
287
+ - doc/benchmarks/Predis/Commands/KeyMove.php
288
+ - doc/benchmarks/Predis/Commands/KeyPersist.php
289
+ - doc/benchmarks/Predis/Commands/KeyRandom.php
290
+ - doc/benchmarks/Predis/Commands/KeyRename.php
291
+ - doc/benchmarks/Predis/Commands/KeyRenamePreserve.php
292
+ - doc/benchmarks/Predis/Commands/KeySort.php
293
+ - doc/benchmarks/Predis/Commands/KeyTimeToLive.php
294
+ - doc/benchmarks/Predis/Commands/KeyType.php
295
+ - doc/benchmarks/Predis/Commands/ListIndex.php
296
+ - doc/benchmarks/Predis/Commands/ListInsert.php
297
+ - doc/benchmarks/Predis/Commands/ListLength.php
298
+ - doc/benchmarks/Predis/Commands/ListPopFirst.php
299
+ - doc/benchmarks/Predis/Commands/ListPopFirstBlocking.php
300
+ - doc/benchmarks/Predis/Commands/ListPopLast.php
301
+ - doc/benchmarks/Predis/Commands/ListPopLastBlocking.php
302
+ - doc/benchmarks/Predis/Commands/ListPopLastPushHead.php
303
+ - doc/benchmarks/Predis/Commands/ListPopLastPushHeadBlocking.php
304
+ - doc/benchmarks/Predis/Commands/ListPushHead.php
305
+ - doc/benchmarks/Predis/Commands/ListPushHeadX.php
306
+ - doc/benchmarks/Predis/Commands/ListPushTail.php
307
+ - doc/benchmarks/Predis/Commands/ListPushTailX.php
308
+ - doc/benchmarks/Predis/Commands/ListRange.php
309
+ - doc/benchmarks/Predis/Commands/ListRemove.php
310
+ - doc/benchmarks/Predis/Commands/ListSet.php
311
+ - doc/benchmarks/Predis/Commands/ListTrim.php
312
+ - doc/benchmarks/Predis/Commands/PrefixHelpers.php
313
+ - doc/benchmarks/Predis/Commands/Processors/ICommandProcessor.php
314
+ - doc/benchmarks/Predis/Commands/Processors/ICommandProcessorChain.php
315
+ - doc/benchmarks/Predis/Commands/Processors/IProcessingSupport.php
316
+ - doc/benchmarks/Predis/Commands/Processors/KeyPrefixProcessor.php
317
+ - doc/benchmarks/Predis/Commands/Processors/ProcessorChain.php
318
+ - doc/benchmarks/Predis/Commands/PubSubPublish.php
319
+ - doc/benchmarks/Predis/Commands/PubSubSubscribe.php
320
+ - doc/benchmarks/Predis/Commands/PubSubSubscribeByPattern.php
321
+ - doc/benchmarks/Predis/Commands/PubSubUnsubscribe.php
322
+ - doc/benchmarks/Predis/Commands/PubSubUnsubscribeByPattern.php
323
+ - doc/benchmarks/Predis/Commands/ScriptedCommand.php
324
+ - doc/benchmarks/Predis/Commands/ServerBackgroundRewriteAOF.php
325
+ - doc/benchmarks/Predis/Commands/ServerBackgroundSave.php
326
+ - doc/benchmarks/Predis/Commands/ServerClient.php
327
+ - doc/benchmarks/Predis/Commands/ServerConfig.php
328
+ - doc/benchmarks/Predis/Commands/ServerDatabaseSize.php
329
+ - doc/benchmarks/Predis/Commands/ServerEval.php
330
+ - doc/benchmarks/Predis/Commands/ServerEvalSHA.php
331
+ - doc/benchmarks/Predis/Commands/ServerFlushAll.php
332
+ - doc/benchmarks/Predis/Commands/ServerFlushDatabase.php
333
+ - doc/benchmarks/Predis/Commands/ServerInfo.php
334
+ - doc/benchmarks/Predis/Commands/ServerInfoV24x.php
335
+ - doc/benchmarks/Predis/Commands/ServerLastSave.php
336
+ - doc/benchmarks/Predis/Commands/ServerMonitor.php
337
+ - doc/benchmarks/Predis/Commands/ServerObject.php
338
+ - doc/benchmarks/Predis/Commands/ServerSave.php
339
+ - doc/benchmarks/Predis/Commands/ServerShutdown.php
340
+ - doc/benchmarks/Predis/Commands/ServerSlaveOf.php
341
+ - doc/benchmarks/Predis/Commands/SetAdd.php
342
+ - doc/benchmarks/Predis/Commands/SetCardinality.php
343
+ - doc/benchmarks/Predis/Commands/SetDifference.php
344
+ - doc/benchmarks/Predis/Commands/SetDifferenceStore.php
345
+ - doc/benchmarks/Predis/Commands/SetIntersection.php
346
+ - doc/benchmarks/Predis/Commands/SetIntersectionStore.php
347
+ - doc/benchmarks/Predis/Commands/SetIsMember.php
348
+ - doc/benchmarks/Predis/Commands/SetMembers.php
349
+ - doc/benchmarks/Predis/Commands/SetMove.php
350
+ - doc/benchmarks/Predis/Commands/SetPop.php
351
+ - doc/benchmarks/Predis/Commands/SetRandomMember.php
352
+ - doc/benchmarks/Predis/Commands/SetRemove.php
353
+ - doc/benchmarks/Predis/Commands/SetUnion.php
354
+ - doc/benchmarks/Predis/Commands/SetUnionStore.php
355
+ - doc/benchmarks/Predis/Commands/StringAppend.php
356
+ - doc/benchmarks/Predis/Commands/StringDecrement.php
357
+ - doc/benchmarks/Predis/Commands/StringDecrementBy.php
358
+ - doc/benchmarks/Predis/Commands/StringGet.php
359
+ - doc/benchmarks/Predis/Commands/StringGetBit.php
360
+ - doc/benchmarks/Predis/Commands/StringGetMultiple.php
361
+ - doc/benchmarks/Predis/Commands/StringGetRange.php
362
+ - doc/benchmarks/Predis/Commands/StringGetSet.php
363
+ - doc/benchmarks/Predis/Commands/StringIncrement.php
364
+ - doc/benchmarks/Predis/Commands/StringIncrementBy.php
365
+ - doc/benchmarks/Predis/Commands/StringSet.php
366
+ - doc/benchmarks/Predis/Commands/StringSetBit.php
367
+ - doc/benchmarks/Predis/Commands/StringSetExpire.php
368
+ - doc/benchmarks/Predis/Commands/StringSetMultiple.php
369
+ - doc/benchmarks/Predis/Commands/StringSetMultiplePreserve.php
370
+ - doc/benchmarks/Predis/Commands/StringSetPreserve.php
371
+ - doc/benchmarks/Predis/Commands/StringSetRange.php
372
+ - doc/benchmarks/Predis/Commands/StringStrlen.php
373
+ - doc/benchmarks/Predis/Commands/StringSubstr.php
374
+ - doc/benchmarks/Predis/Commands/TransactionDiscard.php
375
+ - doc/benchmarks/Predis/Commands/TransactionExec.php
376
+ - doc/benchmarks/Predis/Commands/TransactionMulti.php
377
+ - doc/benchmarks/Predis/Commands/TransactionUnwatch.php
378
+ - doc/benchmarks/Predis/Commands/TransactionWatch.php
379
+ - doc/benchmarks/Predis/Commands/ZSetAdd.php
380
+ - doc/benchmarks/Predis/Commands/ZSetCardinality.php
381
+ - doc/benchmarks/Predis/Commands/ZSetCount.php
382
+ - doc/benchmarks/Predis/Commands/ZSetIncrementBy.php
383
+ - doc/benchmarks/Predis/Commands/ZSetIntersectionStore.php
384
+ - doc/benchmarks/Predis/Commands/ZSetRange.php
385
+ - doc/benchmarks/Predis/Commands/ZSetRangeByScore.php
386
+ - doc/benchmarks/Predis/Commands/ZSetRank.php
387
+ - doc/benchmarks/Predis/Commands/ZSetRemove.php
388
+ - doc/benchmarks/Predis/Commands/ZSetRemoveRangeByRank.php
389
+ - doc/benchmarks/Predis/Commands/ZSetRemoveRangeByScore.php
390
+ - doc/benchmarks/Predis/Commands/ZSetReverseRange.php
391
+ - doc/benchmarks/Predis/Commands/ZSetReverseRangeByScore.php
392
+ - doc/benchmarks/Predis/Commands/ZSetReverseRank.php
393
+ - doc/benchmarks/Predis/Commands/ZSetScore.php
394
+ - doc/benchmarks/Predis/Commands/ZSetUnionStore.php
395
+ - doc/benchmarks/Predis/CommunicationException.php
396
+ - doc/benchmarks/Predis/ConnectionFactory.php
397
+ - doc/benchmarks/Predis/ConnectionParameters.php
398
+ - doc/benchmarks/Predis/DispatcherLoop.php
399
+ - doc/benchmarks/Predis/Distribution/EmptyRingException.php
400
+ - doc/benchmarks/Predis/Distribution/HashRing.php
401
+ - doc/benchmarks/Predis/Distribution/IDistributionStrategy.php
402
+ - doc/benchmarks/Predis/Distribution/INodeKeyGenerator.php
403
+ - doc/benchmarks/Predis/Distribution/KetamaPureRing.php
404
+ - doc/benchmarks/Predis/Helpers.php
405
+ - doc/benchmarks/Predis/IConnectionFactory.php
406
+ - doc/benchmarks/Predis/IConnectionParameters.php
407
+ - doc/benchmarks/Predis/IRedisServerError.php
408
+ - doc/benchmarks/Predis/IReplyObject.php
409
+ - doc/benchmarks/Predis/Iterators/MultiBulkResponse.php
410
+ - doc/benchmarks/Predis/Iterators/MultiBulkResponseSimple.php
411
+ - doc/benchmarks/Predis/Iterators/MultiBulkResponseTuple.php
412
+ - doc/benchmarks/Predis/MonitorContext.php
413
+ - doc/benchmarks/Predis/Network/ComposableStreamConnection.php
414
+ - doc/benchmarks/Predis/Network/ConnectionBase.php
415
+ - doc/benchmarks/Predis/Network/ConnectionException.php
416
+ - doc/benchmarks/Predis/Network/IConnection.php
417
+ - doc/benchmarks/Predis/Network/IConnectionCluster.php
418
+ - doc/benchmarks/Predis/Network/IConnectionComposable.php
419
+ - doc/benchmarks/Predis/Network/IConnectionSingle.php
420
+ - doc/benchmarks/Predis/Network/PhpiredisConnection.php
421
+ - doc/benchmarks/Predis/Network/PredisCluster.php
422
+ - doc/benchmarks/Predis/Network/StreamConnection.php
423
+ - doc/benchmarks/Predis/Network/WebdisConnection.php
424
+ - doc/benchmarks/Predis/Options/ClientCluster.php
425
+ - doc/benchmarks/Predis/Options/ClientConnectionFactory.php
426
+ - doc/benchmarks/Predis/Options/ClientPrefix.php
427
+ - doc/benchmarks/Predis/Options/ClientProfile.php
428
+ - doc/benchmarks/Predis/Options/CustomOption.php
429
+ - doc/benchmarks/Predis/Options/IOption.php
430
+ - doc/benchmarks/Predis/Options/Option.php
431
+ - doc/benchmarks/Predis/Pipeline/FireAndForgetExecutor.php
432
+ - doc/benchmarks/Predis/Pipeline/IPipelineExecutor.php
433
+ - doc/benchmarks/Predis/Pipeline/PipelineContext.php
434
+ - doc/benchmarks/Predis/Pipeline/SafeClusterExecutor.php
435
+ - doc/benchmarks/Predis/Pipeline/SafeExecutor.php
436
+ - doc/benchmarks/Predis/Pipeline/StandardExecutor.php
437
+ - doc/benchmarks/Predis/PredisException.php
438
+ - doc/benchmarks/Predis/Profiles/IServerProfile.php
439
+ - doc/benchmarks/Predis/Profiles/ServerProfile.php
440
+ - doc/benchmarks/Predis/Profiles/ServerVersion12.php
441
+ - doc/benchmarks/Predis/Profiles/ServerVersion20.php
442
+ - doc/benchmarks/Predis/Profiles/ServerVersion22.php
443
+ - doc/benchmarks/Predis/Profiles/ServerVersion24.php
444
+ - doc/benchmarks/Predis/Profiles/ServerVersionNext.php
445
+ - doc/benchmarks/Predis/Protocol/ICommandSerializer.php
446
+ - doc/benchmarks/Predis/Protocol/IComposableProtocolProcessor.php
447
+ - doc/benchmarks/Predis/Protocol/IProtocolProcessor.php
448
+ - doc/benchmarks/Predis/Protocol/IResponseHandler.php
449
+ - doc/benchmarks/Predis/Protocol/IResponseReader.php
450
+ - doc/benchmarks/Predis/Protocol/ProtocolException.php
451
+ - doc/benchmarks/Predis/Protocol/Text/ComposableTextProtocol.php
452
+ - doc/benchmarks/Predis/Protocol/Text/ResponseBulkHandler.php
453
+ - doc/benchmarks/Predis/Protocol/Text/ResponseErrorHandler.php
454
+ - doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
455
+ - doc/benchmarks/Predis/Protocol/Text/ResponseIntegerHandler.php
456
+ - doc/benchmarks/Predis/Protocol/Text/ResponseMultiBulkHandler.php
457
+ - doc/benchmarks/Predis/Protocol/Text/ResponseMultiBulkStreamHandler.php
458
+ - doc/benchmarks/Predis/Protocol/Text/ResponseStatusHandler.php
459
+ - doc/benchmarks/Predis/Protocol/Text/TextCommandSerializer.php
460
+ - doc/benchmarks/Predis/Protocol/Text/TextProtocol.php
461
+ - doc/benchmarks/Predis/Protocol/Text/TextResponseReader.php
462
+ - doc/benchmarks/Predis/PubSubContext.php
463
+ - doc/benchmarks/Predis/ResponseError.php
464
+ - doc/benchmarks/Predis/ResponseQueued.php
465
+ - doc/benchmarks/Predis/ServerException.php
466
+ - doc/benchmarks/Predis/Transaction/AbortedMultiExecException.php
467
+ - doc/benchmarks/Predis/Transaction/MultiExecContext.php
468
+ - doc/benchmarks/body.html.php
469
+ - doc/benchmarks/header.html.php
470
+ - doc/benchmarks/index.html.php
471
+ - doc/benchmarks/index.php
472
+ - doc/benchmarks/show.html.php
257
473
  - lib/appstats.rb
258
474
  - lib/appstats/action.rb
259
475
  - lib/appstats/action_context_key.rb