(self, key, value)
| 135 | return |
| 136 | |
| 137 | async def aset(self, key, value): |
| 138 | if key not in settings.CONFIG: |
| 139 | raise AttributeError(key) |
| 140 | await self._backend.aset(key, value) |
| 141 | |
| 142 | async def amget(self, keys): |
| 143 | backend_values = await self._backend.amget(keys) |
no outgoing calls