Cache de objetos Python
Eu tentei um pouco de código, mas parece causar problemas:
class Page:
cache = []
""" Return cached object """
def __getCache(self, title):
for o in Page.cache:
if o.__searchTerm == title or o.title == title:
return o
return None
""" Initilize the class and start processing """
def __init__(self, title, api=None):
o = self.__getCache(title)
if o:
self = o
return
Page.cache.append(self)
# Other init code
self.__searchTerm = title
self.title = self.someFunction(title)
Então eu tento:
a = Page('test')
b = Page('test')
print a.title # works
print b.title # AttributeError: Page instance has no attribute 'title'
O que há de errado com esse código? Por que não vai funcionar? Existe uma maneira de fazer isso funcionar? Se não, como eu faço de maneira fácil e transparente para os objetos de cache do usuário final?