Rails項目中可以使用緩存來提高性能,常見的緩存方式包括頁面緩存、片段緩存和鍵值對緩存。
class ProductsController < ApplicationController
caches_page :index
def index
@products = Product.all
end
end
<% cache @products do %>
<% @products.each do |product| %>
<%= product.name %>
<% end %>
<% end %>
Rails.cache.write('key', 'value', expires_in: 1.hour)
value = Rails.cache.read('key')
通過合理使用緩存,可以減少數據庫查詢和頁面渲染的時間,提高網站的性能和響應速度。但要注意緩存的更新機制,確保緩存的有效性和一致性。