find_cache 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGE-LOG CHANGED
@@ -1,3 +1,6 @@
1
+ version 0.1.3
2
+ # dependency updates to make it usable for all activerecord >3.0.0
3
+
1
4
  version 0.1.0
2
5
  # 2012-08-25 Go public
3
6
  # 2012-08-24 Added some tests
data/README.rdoc CHANGED
@@ -44,6 +44,23 @@ UserDetail (`belongs_to :user`) ->
44
44
  - sex
45
45
  - location
46
46
 
47
+ ## For finding a record
48
+
49
+ user = User.find_cache(id) # fetches from cache
50
+ user.user_detail # fetches from cache if 'find_cache_has_one :user_detail, UserDetail, :user_id' added to User model
51
+
52
+ user = User.find_by_id(id) # fetches from DB
53
+ user.user_detail # fetches from DB
54
+
55
+ ## For fetching multiple ids
56
+
57
+ users = User.find_all_cache([1,2,3,4,5])
58
+
59
+ ## For fetching a record by attribute
60
+
61
+ user_detail = UserDetail.find_by_user_id(1) # from db
62
+ user_detail = UserDetail.find_cache_by_ref(:user_id, 1) # from cache store
63
+
47
64
  ## For counter_cache 'cache invalidation'
48
65
 
49
66
  ### Create a ruby file under config/initializers and add the following codes:
@@ -1,4 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module FindCache
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
Binary file
@@ -273,3 +273,105 @@ Connecting to database specified by database.yml
273
273
  User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 7 LIMIT 1
274
274
  User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
275
275
  Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."user_id" = 1 LIMIT 1
276
+ Connecting to database specified by database.yml
277
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
278
+  (0.1ms) begin transaction
279
+ SQL (7.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test content for comment"], ["created_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00], ["post_id", 1], ["updated_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00]]
280
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
281
+ SQL (0.2ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
282
+  (74.4ms) commit transaction
283
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
284
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
285
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
286
+  (0.1ms) begin transaction
287
+ SQL (0.6ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 1 content for comment"], ["created_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00], ["post_id", 1], ["updated_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00]]
288
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
289
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
290
+  (82.4ms) commit transaction
291
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
292
+  (0.0ms) begin transaction
293
+ SQL (0.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 2 content for comment"], ["created_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00], ["post_id", 1], ["updated_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00]]
294
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
295
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
296
+  (1.4ms) commit transaction
297
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
298
+  (0.0ms) begin transaction
299
+ SQL (0.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 3 content for comment"], ["created_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00], ["post_id", 1], ["updated_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00]]
300
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
301
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
302
+  (1.3ms) commit transaction
303
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
304
+  (0.0ms) begin transaction
305
+ SQL (0.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 4 content for comment"], ["created_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00], ["post_id", 1], ["updated_at", Fri, 24 Aug 2012 23:10:18 UTC +00:00]]
306
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
307
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
308
+  (1.8ms) commit transaction
309
+ Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (22, 23, 24, 25) ORDER BY id ASC
310
+ Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (22, 23, 24, 25) ORDER BY id ASC
311
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" LIMIT 1
312
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
313
+  (0.1ms) begin transaction
314
+  (0.1ms) commit transaction
315
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
316
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
317
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
318
+  (0.1ms) begin transaction
319
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 24 Aug 2012 23:10:19 UTC +00:00], ["email", "test@videofork.com"], ["password", "test1234"], ["updated_at", Fri, 24 Aug 2012 23:10:19 UTC +00:00]]
320
+ SQL (0.5ms) INSERT INTO "posts" ("body", "comments_count", "created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", nil], ["comments_count", nil], ["created_at", Fri, 24 Aug 2012 23:10:19 UTC +00:00], ["title", nil], ["updated_at", Fri, 24 Aug 2012 23:10:19 UTC +00:00], ["user_id", 8]]
321
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."user_id" = 8 LIMIT 1
322
+  (1.6ms) commit transaction
323
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1
324
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1
325
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
326
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."user_id" = 1 LIMIT 1
327
+ Connecting to database specified by database.yml
328
+ Post Load (19.0ms) SELECT "posts".* FROM "posts" LIMIT 1
329
+  (0.1ms) begin transaction
330
+ SQL (113.1ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test content for comment"], ["created_at", Sat, 25 Aug 2012 07:12:33 UTC +00:00], ["post_id", 1], ["updated_at", Sat, 25 Aug 2012 07:12:33 UTC +00:00]]
331
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
332
+ SQL (0.2ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
333
+  (93.6ms) commit transaction
334
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
335
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
336
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
337
+  (0.0ms) begin transaction
338
+ SQL (0.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 1 content for comment"], ["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["post_id", 1], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00]]
339
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
340
+ SQL (0.3ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
341
+  (158.7ms) commit transaction
342
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
343
+  (0.0ms) begin transaction
344
+ SQL (0.4ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 2 content for comment"], ["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["post_id", 1], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00]]
345
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
346
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
347
+  (5.9ms) commit transaction
348
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
349
+  (0.0ms) begin transaction
350
+ SQL (0.4ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 3 content for comment"], ["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["post_id", 1], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00]]
351
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
352
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
353
+  (1.2ms) commit transaction
354
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
355
+  (0.1ms) begin transaction
356
+ SQL (0.5ms) INSERT INTO "comments" ("content", "created_at", "post_id", "updated_at") VALUES (?, ?, ?, ?) [["content", "test 4 content for comment"], ["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["post_id", 1], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00]]
357
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
358
+ SQL (0.1ms) UPDATE "posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "posts"."id" = 1
359
+  (135.9ms) commit transaction
360
+ Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (27, 28, 29, 30) ORDER BY id ASC
361
+ Comment Load (0.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (27, 28, 29, 30) ORDER BY id ASC
362
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" LIMIT 1
363
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
364
+  (0.1ms) begin transaction
365
+  (0.0ms) commit transaction
366
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
367
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
368
+ User Load (10.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
369
+  (0.1ms) begin transaction
370
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["email", "test@videofork.com"], ["password", "test1234"], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00]]
371
+ SQL (0.7ms) INSERT INTO "posts" ("body", "comments_count", "created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["body", nil], ["comments_count", nil], ["created_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["title", nil], ["updated_at", Sat, 25 Aug 2012 07:12:34 UTC +00:00], ["user_id", 9]]
372
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."user_id" = 9 LIMIT 1
373
+  (1.5ms) commit transaction
374
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1
375
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1
376
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
377
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."user_id" = 1 LIMIT 1
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: find_cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,30 +9,46 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-24 00:00:00.000000000 Z
12
+ date: 2012-08-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: rails
15
+ name: activerecord
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.0
21
+ version: 3.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
- version: 3.2.0
29
+ version: 3.0.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: activesupport
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 3.0.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 3.0.0
30
46
  - !ruby/object:Gem::Dependency
31
47
  name: simple_uuid
32
48
  requirement: !ruby/object:Gem::Requirement
33
49
  none: false
34
50
  requirements:
35
- - - ~>
51
+ - - ! '>='
36
52
  - !ruby/object:Gem::Version
37
53
  version: 0.2.0
38
54
  type: :runtime
@@ -40,9 +56,25 @@ dependencies:
40
56
  version_requirements: !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
- - - ~>
59
+ - - ! '>='
44
60
  - !ruby/object:Gem::Version
45
61
  version: 0.2.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: rails
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 3.2.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 3.2.0
46
78
  - !ruby/object:Gem::Dependency
47
79
  name: sqlite3
48
80
  requirement: !ruby/object:Gem::Requirement
@@ -75,11 +107,11 @@ dependencies:
75
107
  - - ~>
76
108
  - !ruby/object:Gem::Version
77
109
  version: 2.1.0
78
- description: ! 'Makes ActiveRecord ''find_by_id, find_by_(attr)'' methods and ''has_one,
79
- belongs_to relations'' cacheable by id or any referenced columns using Rails.cache
80
- methods. It also supports fetching multiple records using ids with find_all_cache
81
- method(if cache store supports multiple reads [hint: memcache_store, dalli_store
82
- supports.]).'
110
+ description: ! 'Makes ActiveRecord >=3.0.0 ''find_by_id, find_by_(attr)'' methods
111
+ and ''has_one, belongs_to relations'' cacheable by id or any referenced columns
112
+ using Rails.cache methods. It also supports fetching multiple records using ids
113
+ with find_all_cache method(if cache store supports multiple reads [hint: memcache_store,
114
+ dalli_store supports.]).'
83
115
  email:
84
116
  - mustafaturan.net@gmail.com
85
117
  executables: []
@@ -149,7 +181,9 @@ files:
149
181
  - test/dummy/tmp/cache/272/580/User%2F5
150
182
  - test/dummy/tmp/cache/273/590/User%2F6
151
183
  - test/dummy/tmp/cache/274/5A0/User%2F7
184
+ - test/dummy/tmp/cache/275/5B0/User%2F8
152
185
  - test/dummy/tmp/cache/275/6E0/Post%2F1
186
+ - test/dummy/tmp/cache/276/5C0/User%2F9
153
187
  - test/dummy/tmp/cache/276/6F0/Post%2F2
154
188
  - test/dummy/tmp/cache/277/700/Post%2F3
155
189
  - test/dummy/tmp/cache/3A8/070/Comment%2F7
@@ -158,12 +192,20 @@ files:
158
192
  - test/dummy/tmp/cache/3D2/D30/Comment%2F10
159
193
  - test/dummy/tmp/cache/3D3/D50/Comment%2F20
160
194
  - test/dummy/tmp/cache/3D4/D50/Comment%2F12
195
+ - test/dummy/tmp/cache/3D4/D70/Comment%2F30
161
196
  - test/dummy/tmp/cache/3D5/D60/Comment%2F13
197
+ - test/dummy/tmp/cache/3D5/D70/Comment%2F22
162
198
  - test/dummy/tmp/cache/3D6/D70/Comment%2F14
199
+ - test/dummy/tmp/cache/3D6/D80/Comment%2F23
163
200
  - test/dummy/tmp/cache/3D7/D80/Comment%2F15
201
+ - test/dummy/tmp/cache/3D7/D90/Comment%2F24
202
+ - test/dummy/tmp/cache/3D8/DA0/Comment%2F25
164
203
  - test/dummy/tmp/cache/3D9/DA0/Comment%2F17
165
204
  - test/dummy/tmp/cache/3DA/DB0/Comment%2F18
205
+ - test/dummy/tmp/cache/3DA/DC0/Comment%2F27
166
206
  - test/dummy/tmp/cache/3DB/DC0/Comment%2F19
207
+ - test/dummy/tmp/cache/3DB/DD0/Comment%2F28
208
+ - test/dummy/tmp/cache/3DC/DE0/Comment%2F29
167
209
  - test/dummy/tmp/cache/58D/B70/Post%2Fuser_id-1
168
210
  - test/find_cache_test.rb
169
211
  - test/test_helper.rb
@@ -190,7 +232,7 @@ rubyforge_project:
190
232
  rubygems_version: 1.8.24
191
233
  signing_key:
192
234
  specification_version: 3
193
- summary: Cache for ActiveRecord find_by_id and find_by_(attr) methods.
235
+ summary: Cache for ActiveRecord >=3.0.0 find_by_id and find_by_(attr) methods.
194
236
  test_files:
195
237
  - test/dummy/app/assets/javascripts/application.js
196
238
  - test/dummy/app/assets/stylesheets/application.css
@@ -245,7 +287,9 @@ test_files:
245
287
  - test/dummy/tmp/cache/272/580/User%2F5
246
288
  - test/dummy/tmp/cache/273/590/User%2F6
247
289
  - test/dummy/tmp/cache/274/5A0/User%2F7
290
+ - test/dummy/tmp/cache/275/5B0/User%2F8
248
291
  - test/dummy/tmp/cache/275/6E0/Post%2F1
292
+ - test/dummy/tmp/cache/276/5C0/User%2F9
249
293
  - test/dummy/tmp/cache/276/6F0/Post%2F2
250
294
  - test/dummy/tmp/cache/277/700/Post%2F3
251
295
  - test/dummy/tmp/cache/3A8/070/Comment%2F7
@@ -254,12 +298,20 @@ test_files:
254
298
  - test/dummy/tmp/cache/3D2/D30/Comment%2F10
255
299
  - test/dummy/tmp/cache/3D3/D50/Comment%2F20
256
300
  - test/dummy/tmp/cache/3D4/D50/Comment%2F12
301
+ - test/dummy/tmp/cache/3D4/D70/Comment%2F30
257
302
  - test/dummy/tmp/cache/3D5/D60/Comment%2F13
303
+ - test/dummy/tmp/cache/3D5/D70/Comment%2F22
258
304
  - test/dummy/tmp/cache/3D6/D70/Comment%2F14
305
+ - test/dummy/tmp/cache/3D6/D80/Comment%2F23
259
306
  - test/dummy/tmp/cache/3D7/D80/Comment%2F15
307
+ - test/dummy/tmp/cache/3D7/D90/Comment%2F24
308
+ - test/dummy/tmp/cache/3D8/DA0/Comment%2F25
260
309
  - test/dummy/tmp/cache/3D9/DA0/Comment%2F17
261
310
  - test/dummy/tmp/cache/3DA/DB0/Comment%2F18
311
+ - test/dummy/tmp/cache/3DA/DC0/Comment%2F27
262
312
  - test/dummy/tmp/cache/3DB/DC0/Comment%2F19
313
+ - test/dummy/tmp/cache/3DB/DD0/Comment%2F28
314
+ - test/dummy/tmp/cache/3DC/DE0/Comment%2F29
263
315
  - test/dummy/tmp/cache/58D/B70/Post%2Fuser_id-1
264
316
  - test/find_cache_test.rb
265
317
  - test/test_helper.rb