public
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack.git
Click here to lend your support to: mack and make a donation at www.pledgie.com !
Updated change log to include page caching [#18]
markbates (author)
Mon Jul 21 12:39:46 -0700 2008
commit  8a1ac294aa7f579790f06f0ec4b51c61cb5fe3ce
tree    907130b7f4ddb451b202547d17f2e5f18dab7d38
parent  a164275a2082232fb8c6c8cd655085427f6cdb0d
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+* Added Page caching. All that's needed for using page caching is to require the mack-caching gem, turn on
0
+  page caching in your config files with: 
0
+    use_page_caching: true
0
+  and, in your controllers, specify which pages you would like cached with the cache_pages directive:
0
+    cache_pages :only => [:index, :show] # you can also use :except
0
 * Added a Mack::Utils::Registry class to allow for easy creation of registries. [#43]
0
 * Mack::Runner has now been extended to allow for greater extension flexibility.[#44]
0
 * Sessions can now be turned off globally using the app_config.mack.use_sessions switch. [#42]

Comments