SQLAlchemy Caching Tutorial

A tutorial on caching SQLAlchemy v1.3 ORM queries.

Setup

  1. Create a virtualenv: $ python -m venv .venv && source .venv/bin/activate
  2. Install the project dependencies: $ pip install -r requirements.txt
  3. Install the project itself: $ pip install -e .
  4. Explore the code and run the tests: $ pytest -v