7.5 CacheKit

    1. public void list() {
    2. List<Blog> blogList = CacheKit.get("blog", "blogList", new IDataLoader(){
    3. return Blog.dao.find("select * from blog");
    4. }});
    5. render("blog.html");
    6. }