Reviewers: ,
Please review this at http://codereview.tryton.org/272001/ Affected files: M trytond/backend/database.py Index: trytond/backend/database.py =================================================================== --- a/trytond/backend/database.py +++ b/trytond/backend/database.py @@ -104,8 +104,7 @@ IN_MAX = 1000 def __init__(self): - from trytond.cache import LRUDict - self.cache = LRUDict(CONTEXT_CACHE_SIZE) + self.cache = {} def get_cache(self, context=None): ''' -- [email protected] mailing list
