ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2010年1月8日 星期五
Moneta, memcache
Moneta: 提供 key/value stores 的統一介面
moneta github
handcache github
#config/environment.rb
begin
CacheStore = Moneta::Memcache.new(:server => "127.0.0.1")
rescue
CacheStore = Moneta::BasicFile.new(:path => "tmp")
end
#lib/handcache.rb
#handcache lib
#controller
@user = Handcache.get_and_set("first-user", :expires_in => 30) do
User.first.inspect
end
#view
<%= Handcache.get_and_set( dom_id(@post), :expires_in => 60 ) do
render :partial => "post"
end %>
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言