concern_module.rb

Rubyマスター

Explorer

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby
初級10
中級10
上級10
エキスパート5
マスター5
meta_dsl.rb
fiber_pool.rb
concern_module.rb
refinement.rb
middleware.rb
Rust40
Shell40
Swift40
TypeScript40
concern_module.rb
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Cacheable
 extend ActiveSupport::Concern
 included do
   after_save :expire_cache
 end
 class_methods do
   def cached
     Rails.cache.fetch(cache_key) { all.to_a }
   end
 end
 def expire_cache
   Rails.cache.delete(self.class.cache_key)
 end
end
0WPM0%0:000/255(0%)|Ln 1, Col 1
UTF-8Ruby

関連する練習問題