Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document htcacheclean’s timestamp output #482

Open
wants to merge 2 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/manual/caching.xml
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ Vary: negotiate,accept-language,accept-charset
<p>Typically the module will be configured as so;</p>

<highlight language="config">
CacheRoot "/var/cache/apache/"
CacheRoot "/var/cache/apache"
CacheEnable disk /
CacheDirLevels 2
CacheDirLength 1
Expand Down
11 changes: 7 additions & 4 deletions docs/manual/programs/htcacheclean.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,13 @@
<dt>status</dt><dd>Status of the cached response.</dd>
<dt>entity version</dt><dd>The number of times this entry has been
revalidated without being deleted.</dd>
<dt>date</dt><dd>Date of the response.</dd>
<dt>expiry</dt><dd>Expiry date of the response.</dd>
<dt>request time</dt><dd>Time of the start of the request.</dd>
<dt>response time</dt><dd>Time of the end of the request.</dd>
<dt>date</dt><dd>Timestamp of the response in microseconds.</dd>
<dt>expiry</dt><dd>Expiry timestamp of the response in
microseconds.</dd>
<dt>request time</dt><dd>Timestamp of the start of the request in
microseconds.</dd>
<dt>response time</dt><dd>Timestamp of the end of the request in
microseconds.</dd>
<dt>body present</dt><dd>If 0, no body is stored with this request,
1 otherwise.</dd>
<dt>head request</dt><dd>If 1, the entry contains a cached HEAD
Expand Down