gitextract_k61syhvn/ ├── .ci/ │ ├── release │ └── run ├── .gitattributes ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .idea/ │ └── dictionaries/ │ └── karlicos.xml ├── LICENSE.txt ├── README.ipynb ├── README.md ├── benchmarks/ │ ├── 20230912-comparison-with-legacy.org │ ├── 20230912.org │ └── 20230917.org ├── doc/ │ ├── cachew_disable.md │ ├── serialization.org │ └── test_serialization.py ├── generate-readme ├── github-issues.org ├── misc/ │ ├── profile.py │ └── test_redis/ │ ├── docker-compose.yml │ └── test.py ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── ruff.toml ├── src/ │ └── cachew/ │ ├── __init__.py │ ├── backend/ │ │ ├── common.py │ │ ├── file.py │ │ └── sqlite.py │ ├── common.py │ ├── compat.py │ ├── experimental.py │ ├── extra.py │ ├── legacy.py │ ├── logging_helper.py │ ├── marshall/ │ │ ├── cachew.py │ │ └── common.py │ ├── py.typed │ ├── pytest.py │ ├── tests/ │ │ ├── marshall.py │ │ ├── test_cachew.py │ │ ├── test_future_annotations.py │ │ ├── test_resolve_type_parameters.py │ │ └── utils.py │ └── utils.py ├── tox.ini └── ty.toml