PERF: Look up expired futures from in-memory Futures

instead of queries to the db.
This commit is contained in:
Richard Frank
2016-02-04 18:55:34 -05:00
parent f5b74bf7c5
commit ede1eb7aa0
5 changed files with 108 additions and 36 deletions
+1 -1
View File
@@ -502,7 +502,7 @@ class BarData(object):
"""
def __init__(self, data=None):
self._data = data or {}
self._data = data if data is not None else {}
self._contains_override = None
def __contains__(self, name):