### Feature description Global cache via monkeypatching, [just like in `requests-cache`](https://requests-cache.readthedocs.io/en/stable/#patching) ```python import requests import requests_cache requests_cache.install_cache('demo_cache') requests.get('https://httpbin.org/delay/1') ``` [Apologies if this is not a sensible feature request; I'm new to aiohttp] ### Use case Cache requests of existing Python package that relies on `aiohttp.ClientSession` (without modifying the package). ### Workarounds Not that I'm aware of. I tried using `requests-cache` with the code snippet above, but that did not work.