Changeset 496
- Timestamp:
- 07/31/2005 01:18:18 PM (3 years ago)
- Location:
- branches/lighttpd-1.3.x/doc
- Files:
-
- 2 modified
-
authentication.txt (modified) (1 diff)
-
cml.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.3.x/doc/authentication.txt
r450 r496 183 183 "method" => "digest", 184 184 "realm" => "download archiv", 185 "require" => " user=jan"185 "require" => "valid-user" 186 186 ) 187 187 ) -
branches/lighttpd-1.3.x/doc/cml.txt
r464 r496 110 110 file_mtime(b .. "templates/jk.tmpl") > file.mtime(cwd .. "_cache.html") 111 111 file.mtime(b .. "content.html") > file.mtime(cwd .. "_cache.html") then 112 return 1112 return CACHE_MISS 113 113 else 114 return 0114 return CACHE_HIT 115 115 end 116 116 … … 153 153 cwd .. "footer.html" } 154 154 155 return 0155 return CACHE_HIT 156 156 157 157 Now we get about 10000 req/s instead of 600 req/s.

