def increment(self, key, value=1):
self.locker.acquire()
try:
if key in self.storage:
value = self.storage[key][1] + value
self.storage[key] = (time.time(), value)
except BaseException, e:
self.locker.release()
raise e
self.locker.release()
return value
Isn't that supposed to be self.storage[key][0] ??
If you look at
if f is None:
return None
if item and (dt == None or item[0] > time.time() - dt):
return item[1]
value = f()
self.locker.acquire()
self.storage[key] = (time.time(), value)
self.locker.release()
return value
value is of course what is returned by f(). and that is in index 1 of
the list. So the increment member is actually taking the value
(results) and adding value to them. I don't think this is what is
intended?
Where is increment used?
-Thadeus
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.