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
9ee51d6f
Commit
9ee51d6f
authored
Nov 08, 2009
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged c105511 from 2.12 branch
parent
360fd83e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
24 deletions
+16
-24
src/App/CacheManager.py
src/App/CacheManager.py
+3
-24
src/App/dtml/cacheParameters.dtml
src/App/dtml/cacheParameters.dtml
+13
-0
No files found.
src/App/CacheManager.py
View file @
9ee51d6f
...
...
@@ -17,8 +17,6 @@ This class is mixed into the database manager in App.ApplicationManager.
$Id$'''
__version__
=
'$Revision: 1.31 $'
[
11
:
-
2
]
import
time
from
App.class_init
import
InitializeClass
from
App.special_dtml
import
DTMLFile
from
App.ImageFile
import
ImageFile
...
...
@@ -44,6 +42,9 @@ class CacheManager:
def
cache_length
(
self
):
return
self
.
_getDB
().
cacheSize
()
def
cache_length_bytes
(
self
):
return
self
.
_getDB
().
getCacheSizeBytes
()
def
cache_detail_length
(
self
):
return
self
.
_getDB
().
cacheDetailSize
()
...
...
@@ -76,28 +77,6 @@ class CacheManager:
response
=
REQUEST
[
'RESPONSE'
]
response
.
redirect
(
REQUEST
[
'URL1'
]
+
'/manage_cacheParameters'
)
# BoboPOS 2
def
cache_mean_age
(
self
):
import
Globals
# for data
return
Globals
.
Bobobase
.
_jar
.
cache
.
cache_mean_age
/
60.0
# BoboPOS 2
def
cache_mean_deal
(
self
):
import
Globals
# for data
return
Globals
.
Bobobase
.
_jar
.
cache
.
cache_mean_deal
*
60
# BoboPOS 2
def
cache_mean_deac
(
self
):
import
Globals
# for data
return
Globals
.
Bobobase
.
_jar
.
cache
.
cache_mean_deac
*
60
# BoboPOS 2
def
cache_last_gc_time
(
self
):
import
Globals
# for data
t
=
Globals
.
Bobobase
.
_jar
.
cache
.
cache_last_gc_time
return
time
.
asctime
(
time
.
localtime
(
t
))
def
manage_full_sweep
(
self
,
value
,
REQUEST
):
"Perform a full sweep through the cache"
db
=
self
.
_getDB
()
...
...
src/App/dtml/cacheParameters.dtml
View file @
9ee51d6f
...
...
@@ -41,6 +41,19 @@
</td>
</tr>
<tr>
<td align="left">
<div class="form-label">
Target memory size per cache in bytes
</div>
</td>
<td>
<div class="form-text">
&dtml-cache_length_bytes;
</div>
</td>
</tr>
<tr>
<td align="left" colspan=2>
<div class="form-label">
...
...
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