Changeset 496

Show
Ignore:
Timestamp:
07/31/2005 01:18:18 PM (3 years ago)
Author:
jan
Message:

let examples use the new features

Location:
branches/lighttpd-1.3.x/doc
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.3.x/doc/authentication.txt

    r450 r496  
    183183                     "method"  => "digest", 
    184184                     "realm"   => "download archiv", 
    185                      "require" => "user=jan" 
     185                     "require" => "valid-user" 
    186186                   ) 
    187187                 ) 
  • branches/lighttpd-1.3.x/doc/cml.txt

    r464 r496  
    110110     file_mtime(b .. "templates/jk.tmpl")   > file.mtime(cwd .. "_cache.html") 
    111111     file.mtime(b .. "content.html")        > file.mtime(cwd .. "_cache.html") then 
    112      return 1 
     112     return CACHE_MISS 
    113113  else  
    114      return 0 
     114     return CACHE_HIT 
    115115  end 
    116116 
     
    153153                     cwd .. "footer.html" } 
    154154   
    155   return 0 
     155  return CACHE_HIT 
    156156 
    157157Now we get about 10000 req/s instead of 600 req/s.