Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tempstorage
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
tempstorage
Commits
d963d0ba
Commit
d963d0ba
authored
Mar 17, 2014
by
Tom Gross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python 3 compatibility
parent
f24a97cb
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
179 deletions
+74
-179
.gitignore
.gitignore
+2
-0
bootstrap.py
bootstrap.py
+62
-169
buildout.cfg
buildout.cfg
+1
-0
setup.py
setup.py
+4
-4
src/tempstorage/TemporaryStorage.py
src/tempstorage/TemporaryStorage.py
+5
-6
No files found.
.gitignore
View file @
d963d0ba
...
...
@@ -3,8 +3,10 @@ build
dist
lib
parts
develop-eggs
*.dll
*.pyc
*.pyo
*.so
.installed.cfg
bootstrap.py
View file @
d963d0ba
This diff is collapsed.
Click to expand it.
buildout.cfg
View file @
d963d0ba
...
...
@@ -5,3 +5,4 @@ parts = test
[test]
recipe = zc.recipe.testrunner
eggs = tempstorage
setup.py
View file @
d963d0ba
...
...
@@ -16,11 +16,11 @@
from
setuptools
import
setup
,
find_packages
long_description
=
file
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
file
(
"CHANGES.txt"
).
read
()
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
open
(
"CHANGES.txt"
).
read
()
setup
(
name
=
'tempstorage'
,
version
=
'2.1
2.3dev
'
,
version
=
'2.1
3.dev0
'
,
url
=
'http://pypi.python.org/pypi/tempstorage'
,
license
=
'ZPL 2.1'
,
description
=
'A RAM-based storage for ZODB'
,
...
...
@@ -31,7 +31,7 @@ setup(name='tempstorage',
package_dir
=
{
''
:
'src'
},
install_requires
=
[
'setuptools'
,
'ZODB
3 >= 3.9.0
'
,
'ZODB'
,
'zope.testing'
,
],
include_package_data
=
True
,
...
...
src/tempstorage/TemporaryStorage.py
View file @
d963d0ba
...
...
@@ -116,7 +116,8 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
def
_clear_temp
(
self
):
now
=
time
.
time
()
if
now
>
(
self
.
_last_cache_gc
+
self
.
_conflict_cache_gcevery
):
for
k
,
v
in
self
.
_conflict_cache
.
items
():
temp_cc
=
self
.
_conflict_cache
.
copy
()
for
k
,
v
in
temp_cc
.
items
():
data
,
t
=
v
if
now
>
(
t
+
self
.
_conflict_cache_maxage
):
del
self
.
_conflict_cache
[
k
]
...
...
@@ -253,7 +254,6 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
references
=
{}
for
roid
in
referencesl
:
references
[
roid
]
=
1
referenced
=
references
.
has_key
# Create a reference count for this object if one
# doesn't already exist
...
...
@@ -265,7 +265,7 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
# object
roids
=
oreferences
.
get
(
oid
,
[])
for
roid
in
roids
:
if
r
eferenced
(
roid
)
:
if
r
oid
in
references
:
# still referenced, so no need to update
# remove it from the references dict so it doesn't
# get "added" in the next clause
...
...
@@ -368,13 +368,12 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
self
.
_lock_acquire
()
try
:
rindex
=
{}
referenced
=
rindex
.
has_key
rootl
=
[
'
\
0
\
0
\
0
\
0
\
0
\
0
\
0
\
0
'
]
# mark referenced objects
while
rootl
:
oid
=
rootl
.
pop
()
if
referenced
(
oid
)
:
if
oid
in
rindex
:
continue
p
=
self
.
_opickle
[
oid
]
referencesf
(
p
,
rootl
)
...
...
@@ -382,7 +381,7 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
# sweep unreferenced objects
for
oid
in
self
.
_index
.
keys
():
if
not
referenced
(
oid
)
:
if
not
oid
in
rindex
:
self
.
_takeOutGarbage
(
oid
)
finally
:
self
.
_lock_release
()
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