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
nexedi
ZODB
Commits
1d61dc56
Commit
1d61dc56
authored
Jul 14, 2008
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Complain if server invalidations are applied out of order.
parent
d649173c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
src/ZEO/cache.py
src/ZEO/cache.py
+21
-6
src/ZEO/tests/test_cache.py
src/ZEO/tests/test_cache.py
+1
-2
No files found.
src/ZEO/cache.py
View file @
1d61dc56
...
...
@@ -607,15 +607,30 @@ class ClientCache(object):
# data for `oid`, stop believing we have current data, and mark the
# data we had as being valid only up to `tid`. In all other cases, do
# nothing.
# @param oid object id
# @param version name of version to invalidate.
# @param tid the id of the transaction that wrote a new revision of oid,
#
# Paramters:
#
# - oid object id
# - version name of version to invalidate.
# - tid the id of the transaction that wrote a new revision of oid,
# or None to forget all cached info about oid (version, current
# revision, and non-current revisions)
# - server_invalidation, a flag indicating whether the
# invalidation has come from the server. It's possible, due
# to threading issues, that when applying a local
# invalidation after a store, that later invalidations from
# the server may already have arrived.
@
locked
def
invalidate
(
self
,
oid
,
version
,
tid
):
if
tid
>
self
.
tid
and
tid
is
not
None
:
self
.
setLastTid
(
tid
)
def
invalidate
(
self
,
oid
,
version
,
tid
,
server_invalidation
=
True
):
if
tid
is
not
None
:
if
tid
>
self
.
tid
:
self
.
setLastTid
(
tid
)
elif
tid
<
self
.
tid
:
if
server_invalidation
:
raise
ValueError
(
"invalidation tid (%s) must not be less"
" than previous one (%s)"
%
(
u64
(
tid
),
u64
(
self
.
tid
)))
ofs
=
self
.
current
.
get
(
oid
)
if
ofs
is
None
:
...
...
src/ZEO/tests/test_cache.py
View file @
1d61dc56
...
...
@@ -44,7 +44,6 @@ class CacheTests(unittest.TestCase):
self
.
assertEqual
(
self
.
cache
.
getLastTid
(),
None
)
self
.
cache
.
setLastTid
(
n2
)
self
.
assertEqual
(
self
.
cache
.
getLastTid
(),
n2
)
self
.
cache
.
invalidate
(
n1
,
""
,
n1
)
self
.
assertEqual
(
self
.
cache
.
getLastTid
(),
n2
)
self
.
cache
.
invalidate
(
n1
,
""
,
n3
)
self
.
assertEqual
(
self
.
cache
.
getLastTid
(),
n3
)
...
...
@@ -64,8 +63,8 @@ class CacheTests(unittest.TestCase):
def
testInvalidate
(
self
):
data1
=
"data for n1"
self
.
cache
.
store
(
n1
,
""
,
n3
,
None
,
data1
)
self
.
cache
.
invalidate
(
n1
,
""
,
n4
)
self
.
cache
.
invalidate
(
n2
,
""
,
n2
)
self
.
cache
.
invalidate
(
n1
,
""
,
n4
)
self
.
assertEqual
(
self
.
cache
.
load
(
n1
,
""
),
None
)
self
.
assertEqual
(
self
.
cache
.
loadBefore
(
n1
,
n4
),
(
data1
,
n3
,
n4
))
...
...
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