Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
28e7b2bb
Commit
28e7b2bb
authored
Jun 06, 2007
by
Christian Theune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fixed bug 113932 by changing automatic garbage collection to only work on
closed connections.
parent
c3655ce6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
7 deletions
+56
-7
NEWS.txt
NEWS.txt
+4
-0
src/ZODB/DB.py
src/ZODB/DB.py
+20
-7
src/ZODB/tests/test_cache.py
src/ZODB/tests/test_cache.py
+32
-0
No files found.
NEWS.txt
View file @
28e7b2bb
...
...
@@ -10,6 +10,10 @@ General
will be removed in ZODB 3.9. (They have been widely recognized as
deprecated for quite a while.)
- Changed the automatic garbage collection when opening a connection to only
apply the garbage collections on those connections in the pool that are
closed. (This fixed issue 113932.)
ZEO
---
...
...
src/ZODB/DB.py
View file @
28e7b2bb
...
...
@@ -160,9 +160,17 @@ class _ConnectionPool(object):
assert
result
in
self
.
all
return
result
def
map
(
self
,
f
):
"""For every live connection c, invoke f(c)."""
self
.
all
.
map
(
f
)
def
map
(
self
,
f
,
open_connections
=
True
):
"""For every live connection c, invoke f(c).
If `open_connections` is false then only call f(c) on closed
connections.
"""
if
open_connections
:
self
.
all
.
map
(
f
)
else
:
map
(
f
,
self
.
available
)
class
DB
(
object
):
"""The Object Database
...
...
@@ -360,12 +368,17 @@ class DB(object):
finally
:
self
.
_r
()
# Call f(c) for all connections c in all pools in all versions.
def
_connectionMap
(
self
,
f
):
def
_connectionMap
(
self
,
f
,
open_connections
=
True
):
"""Call f(c) for all connections c in all pools in all versions.
If `open_connections` is false then f(c) is only called on closed
connections.
"""
self
.
_a
()
try
:
for
pool
in
self
.
_pools
.
values
():
pool
.
map
(
f
)
pool
.
map
(
f
,
open_connections
=
open_connections
)
finally
:
self
.
_r
()
...
...
@@ -608,7 +621,7 @@ class DB(object):
result
.
open
(
transaction_manager
)
# A good time to do some cache cleanup.
self
.
_connectionMap
(
lambda
c
:
c
.
cacheGC
())
self
.
_connectionMap
(
lambda
c
:
c
.
cacheGC
()
,
open_connections
=
False
)
return
result
...
...
src/ZODB/tests/test_cache.py
View file @
28e7b2bb
...
...
@@ -51,6 +51,9 @@ class RegularObject(Persistent):
init
=
classmethod
(
init
)
class
PersistentObject
(
Persistent
):
pass
class
CacheTests
:
def
test_cache
(
self
):
...
...
@@ -204,6 +207,35 @@ class CacheTests:
4
"""
def
test_gc_on_open_connections
(
self
):
r"""Test that automatic GC is not applied to open connections.
This test (and the corresponding fix) was introduced because of bug
report 113923.
We start with a persistent object and add a list attribute::
>>> db = databaseFromString("<zodb>\n"
... "cache-size 0\n"
... "<mappingstorage/>\n"
... "</zodb>")
>>> cn1 = db.open()
>>> r = cn1.root()
>>> r['ob'] = PersistentObject()
>>> r['ob'].l = []
>>> transaction.commit()
Now, let's modify the object in a way that doesn't get noticed. Then,
we open another connection which triggers automatic garbage
connection. After that, the object should not have been ghostified::
>>> r['ob'].l.append(1)
>>> cn2 = db.open()
>>> r['ob'].l
[1]
"""
def
test_suite
():
return
doctest
.
DocTestSuite
()
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