Open
Description
Not working example:
class A:
@cache(namespace="app", expire=3600)
async def test(self, a=True):
print("test")
return [], [], []
Working example:
class A:
@staticmethod
@cache(namespace="app", expire=3600)
async def test(a=True):
print("test")
return [], [], []
Is any way to cache data on class method?