public
Description: An awesome Ruby blog engine.
Homepage: http://thothblog.org/
Clone URL: git://github.com/rgrove/thoth.git
Search Repo:
fix memory leak and improper caching of MainController#index
rgrove (author)
Tue Apr 15 22:15:25 -0700 2008
commit  9cf5cbdeb431979e2c2f74dc5f8535be8c7b5a7f
tree    a3315910d6709ce1752aa4a3a5bab879b4c83ae1
parent  c1502764ed2b8d2e190e569c149262a68cd808bf
...
1
2
3
 
 
 
 
4
5
6
...
1
2
3
4
5
6
7
8
9
10
0
@@ -1,6 +1,10 @@
0
 Thoth History
0
 ================================================================================
0
 
0
+Version 0.1.4 (2008-04-15)
0
+ * Fixed a nasty bug introduced in 0.1.3 that caused a memory leak and resulted
0
+ in the index page (/) not being cached properly.
0
+
0
 Version 0.1.3 (2008-04-13)
0
   * When creating or editing a blog post or page, the preview is displayed above
0
     the edit form rather than below it.
...
38
39
40
41
 
42
43
44
...
38
39
40
 
41
42
43
44
0
@@ -38,7 +38,7 @@
0
   
0
   if Thoth::Config.server.enable_cache
0
     cache :index, :ttl => 60, :key => lambda {
0
- check_auth.to_s + (request[:type] || '') + flash.to_s
0
+ check_auth.to_s + (request[:type] || '') + flash.inspect
0
     }
0
     cache :atom, :rss, :ttl => 60
0
     cache :sitemap, :ttl => 3600

Comments

    No one has commented yet.