前置種子 html
https://github.com/stympy/fakergit
若有個Company模型,含有一個name屬性。弄出三十個實例變量:github
Faker::Company是內置的類。web
unique方法讓name的值都是惟一的。數據庫
SecureRandom是一個module,random_number(100)在100內生成隨機整數。json
HTTP Caching瀏覽器
目的:加快下載速度,若是已經從服務器下載了網頁,並得知沒有變化,那麼就不重新下載網頁緩存
網頁瀏覽器知道當它下載了一個resource(a web page),會把它放入它的cache。在第二次請求request,瀏覽器傳遞這個信息給服務器:If-Modified-Since: header 。服務器會把這個信息和相關文件比較,而後發送新版本或者返回一個HTTP 304 not Modified file 做爲response. 服務器
fresh_when方法 dom
在控制器中添加:
#也能夠簡寫etag: @company
看log:顯示:
第一次Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 0.5ms)
再刷新: 304 Not Modified in 1ms (ActiveRecord: 0.1ms)
curl is a tool to transfer data from or to a server
curl [option/url]
$ curl -I http://localhost:3000/companies/1
option:
-I,僅僅顯示頭部。
-i, -include 顯示Include the HTTP response headers in the output
-v, 顯示幾乎所有信息,包括網頁的html 。對debug有幫助.
當前用戶:current_user and other potential parameters
給etag增長指定的條件,當考慮是否更新時,看是不是當前用戶的關聯對象。
#在具體的控制器中,首行寫上也能夠。
Stale?方法
和fresh_when的區別是能夠指定respond_to的格式,如json.
expires_in 方法
用於設置緩存過時的時間。expires_in(20.minutes)就是20分鐘後過時。
def show
expires_in 2.minutes
fresh_when @company, public: true
end
$ curl -I <url>
fragment cache
使用碎片緩存能夠單獨緩存部分視圖頁面。碎片緩存和HTTP caching已經page caching是能夠一塊兒使用的。
$ rails dev:cache
#⚠️在開發模塊手動打開碎片緩存功能。而在產品模式,碎片緩存是默認使用的。
把整個表格都包含進去 cache('table_of_all_companies' )
<% cache('name_of_cache') do %>
[...]
<% end %>
Deleting the Fragment Cache
若是使用碎片緩存的話,在after_create, after_update, before_destroy上清除對應的緩存,使用AbstractController::caching::fragment expire_fragment方法
class Employee < ActiveRecord::Base ⚠️Company 模塊也要➕上
belongs_to :company, touch: true
after_create :expire_cache after_update :expire_cache before_destroy :expire_cache
def expire_cache
ActionController::Base.new.expire_fragment('table_of_all_companies')
end
end
擴展:
ActionControllers是web請求的核心。它們由多個action組成,在request中執行並渲染一個模版或者redirects to 另外的action。
默認, ApplicationController繼承自ActionController::Base。全部其餘的controller繼承它。
全部的methods都由2個基本的模式: Get-and-show, do-and-redirect.
備註:我以爲無需使用這個。由於fresh_when中會判斷是否發生變化。 的確,見下節👇。
自動化到期的緩存。
賦予一個碎片緩存惟一的名字,rails就會generate一個cache key給這個碎片。
使用cache_key(timestamp_column = :updated_at)生成一個cache key 由對象的id和updated_time組成,一旦update_time發生變化,cache key 就會變化。由是重新加載緩存。
<% cache(@companies) do %> 則能夠自動化到期碎片緩存了。
在config/environments/development.rb中,增長一行代碼能夠在log中顯示cache key的名字。
config.action_controller.enable_fragment_cache_loggin = true
Russian Doll Caching
很管用。。主要用於數據庫關聯的嵌套表格table。
當一行發生變化時,只重新從服務器render改變的這一行,其餘的行仍是從緩存中讀取。這會節省大量資源。本例,2層緩存,也叫俄羅斯套娃:
。。。略
若是在log中顯示fragment cache。會有write fragemnt和read fragment字樣。
Cache Store
用來管理儲存的碎片緩存。無需配置。每個rails程序process都有單獨的cache store。因此若是有多個rails processes並行運行在production system中,每一個process都有本身的MemoryStore。不方便管理。
MemCacheStore
流行的緩存存儲器。配置:
config/environments/production.rb.:
config.cache_store = :mem_cache_store
Redis: 5.2新增緩存存儲器。見博客⬇️
https://www.cnblogs.com/chentianwei/p/8776632.html
Page Caching (中止)
已經被Rails4移除,但能夠做爲gem使用。做者說仍然頗有力量。powerful。
⚠️: 須要配置服務器的額外知識。做者說網頁緩存不適合弱心臟。
在操做到caching the company index and show view這一步,沒有增長public/deploy/companies/1.html。猜想是否沒有配置web server。暫停學習。