Commit 9e7e3ef1 authored by Jeremy Hylton's avatar Jeremy Hylton

Make trace=False the default.

Remove some unnecessary pack() calls.
parent 91a54632
...@@ -72,7 +72,7 @@ class ClientCache: ...@@ -72,7 +72,7 @@ class ClientCache:
# @param path path of persistent snapshot of cache state # @param path path of persistent snapshot of cache state
# @param size maximum size of object data, in bytes # @param size maximum size of object data, in bytes
def __init__(self, path=None, size=None, trace=True): def __init__(self, path=None, size=None, trace=False):
self.path = path self.path = path
self.size = size self.size = size
self.log = logging.getLogger("zeo.cache") self.log = logging.getLogger("zeo.cache")
...@@ -460,7 +460,7 @@ class Object(object): ...@@ -460,7 +460,7 @@ class Object(object):
# Write standard form of Object to file, f. # Write standard form of Object to file, f.
self.serialize_header(f) self.serialize_header(f)
f.write(self.data) f.write(self.data)
f.write(struct.pack(">8s", self.key[0])) f.write(self.key[0])
def serialize_header(self, f): def serialize_header(self, f):
s = struct.pack(self.fmt, self.end_tid or "\0" * 8, s = struct.pack(self.fmt, self.end_tid or "\0" * 8,
...@@ -486,7 +486,7 @@ class Object(object): ...@@ -486,7 +486,7 @@ class Object(object):
if dlen != len(data): if dlen != len(data):
raise ValueError("corrupted record, data") raise ValueError("corrupted record, data")
s = f.read(8) s = f.read(8)
if struct.pack(">8s", s) != oid: if s != oid:
raise ValueError("corrupted record, oid") raise ValueError("corrupted record, oid")
return cls((oid, start_tid), version, data, start_tid, end_tid) return cls((oid, start_tid), version, data, start_tid, end_tid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment