README.md in qor_cache-0.0.2 vs README.md in qor_cache-0.0.3

- old
+ new

@@ -27,11 +27,16 @@ cache_class_method :heavy_class_method_related_to_current_season, 'current_season' cache_field :product_code, :from => [:product, :code] end + cache_includes "filename", :no_cache => true, :expires_in => 5.minutes do |app| + ... + end + cache_includes "filename", "cache_key..." + # app/models/color_variation.rb def heavy_method_related_to_products Product.all.map(&:id).sum end @@ -54,12 +59,26 @@ cache qor_cache_key('product') { current_user.role } do xxxxx end + qor_cache_includes "filename" + +## TODO + + Support render :file, :url for render_qor_cache_includes + :partial => "filename" + :filename => "filename" + :url => "http://xxx" -> SSI ? Rewrite ? + ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request + +## Author ## +Jinzhu <http://github.com/jinzhu> + +* A Product From ThePlant <http://theplant.jp>