Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
24f4ab1a
Commit
24f4ab1a
authored
Sep 19, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
d7344dc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
0 deletions
+88
-0
lib/python/App/cache.dtml
lib/python/App/cache.dtml
+88
-0
No files found.
lib/python/App/cache.dtml
0 → 100644
View file @
24f4ab1a
<HTML><HEAD><TITLE>Cache Manager</TITLE> </HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555" ALINK="#77003B">
<h2>Cache Manager</h2><P>
<h3>Cache Statistics</h3>
<table>
<tr><th align=right>Total number of objects in the database:</th>
<td><!--#var database_size--></td></tr>
<tr><th align=right>Number of objects in the cache:</th>
<td><!--#var cache_length--></td></tr>
<tr><th valign=top align=right>Target size:</th><td>
<form action="<!--#var URL1-->/manage_cache_size" method=GET>
<input type="text" name="value:int" value="<!--#var cache_size-->" size=6>
<input type="submit" value="Change">
</form></td></tr>
<tr><th align=right>Mean time since last access:</th>
<td><!--#var cache_mean_age--></td></tr>
<tr><th valign=top align=right>Target maximum time between accesses:</th><td>
<form action="<!--#var URL1-->/manage_cache_age" method=GET>
<input type="text" name="value:int" value="<!--#var cache_age-->" size=6>
<input type="submit" value="Change">
</form></td></tr>
<tr><th align=right>Deactivation rate:</th>
<td><!--#var cache_mean_deac--></td></tr>
<tr><th align=right>Deallocation rate:</th>
<td><!--#var cache_mean_deal--></td></tr>
<tr><th align=right>Time of last cache garbage collection:</th>
<td><!--#var cache_last_gc_time--></td></tr>
</table>
<!--#if show_detail-->
<h4>Cache Details</h4><P>
<table><tr><th>Object Class</th><th>Count</th></tr>
<!--#in cache_detail-->
<tr><td><!--#var sequence-key--></td><td><!--#var __str__--></td></tr>
<!--#/in cache_detail-->
</table>
<!--#/if show_detail-->
<hr>
<h3>Manual Cache Garbage Collection</h3><P>
<table>
<tr><td>
<strong>Full Sweep</strong><br>
Make a single pass through the cache, removing any objects that are no
longer referenced, and deactivating objects that have not been
accessed in the number of seconds given in the input box to the right
of this text.
</td><td>
<form action="<!--#var URL1-->/manage_full_sweep" method=GET>
<input type="text" name="value:int" size=6>
<input type="submit" value="Full Sweep">
</form></td></tr>
<tr><td>
<strong>Minimize</strong><br>
Make multiple passes through the cache, removing any objects that are no
longer referenced, and deactivating objects that have not been
accessed in the number of seconds given in the input box to the right
of this text.
</td><td>
<form action="<!--#var URL1-->/manage_minimize" method=GET>
<input type="text" name="value:int" size=6>
<input type="submit" value="Minimize">
</form></td></tr>
</table
</BODY></HTML>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment