| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Add some basic info about creating DynamoDB tables | Jordan Cook | 2021-09-01 | 1 | -33/+37 |
| * | Revert renaming DynamoDB backend classes; a minor inconsistency is probably b... | Jordan Cook | 2021-08-30 | 2 | -11/+9 |
| * | Use pathlib.Path objects for all file paths in Filesystem and SQLite backends | Jordan Cook | 2021-08-29 | 2 | -51/+47 |
| * | Allow has_url(), delete_url(), and create_key() to optionally take requests.R... | Jordan Cook | 2021-08-28 | 2 | -21/+17 |
| * | Reorganize user docs: break down User Guide and Advanced Usage sections into ... | Jordan Cook | 2021-08-26 | 4 | -7/+5 |
| * | Minor optimization: exclude redundant CachedResponse.cache_key and CachedHTTP... | Jordan Cook | 2021-08-25 | 2 | -4/+6 |
| * | Add some notes about Redis persistence | Jordan Cook | 2021-08-25 | 1 | -3/+10 |
| * | Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ... | Jordan Cook | 2021-08-25 | 3 | -70/+11 |
| * | Add BaseCache.update() method as a shortcut for exporting to a different cach... | Jordan Cook | 2021-08-25 | 1 | -53/+59 |
| * | Add FileCache.cache_dir property | Jordan Cook | 2021-08-25 | 1 | -0/+5 |
| * | Add another monkey-patch for sphinx-automodapi instead of installing from git... | Jordan Cook | 2021-08-23 | 1 | -1/+1 |
| * | Fix incorrect location of redirects.sqlite when using filesystem backend | Jordan Cook | 2021-08-23 | 1 | -4/+12 |
| * | Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil... | Jordan Cook | 2021-08-21 | 2 | -33/+49 |
| * | Add CLI arg to benchmark script to select a backend | Jordan Cook | 2021-08-20 | 2 | -1/+5 |
| * | Add support for SQLite in-memory databases | Jordan Cook | 2021-08-20 | 2 | -21/+49 |
| * | Make DynamoDB and MongoDB naming consistent | Jordan Cook | 2021-08-20 | 4 | -12/+14 |
| * | Add FileCache.paths() wrapper method, and return a list instead of generator | Jordan Cook | 2021-08-20 | 2 | -9/+22 |
| * | Better backend docs | Jordan Cook | 2021-08-20 | 7 | -46/+280 |
| * | Move autosummaries to module docstrings instead of template, to make them eas... | Jordan Cook | 2021-08-20 | 2 | -1/+9 |
| * | Rename DbDict to SQLiteDict for consistency with other backends (with aliases... | Jordan Cook | 2021-08-19 | 3 | -34/+22 |
| * | Add support for custom cache keys | Jordan Cook | 2021-08-14 | 1 | -2/+12 |
| * | Add support for Last-Modified + If-Modified-Since headers | Jordan Cook | 2021-08-14 | 1 | -15/+6 |
| * | Remove deprecated 'core' module and BaseCache.remove_old_entries() | Jordan Cook | 2021-08-14 | 1 | -6/+0 |
| * | Replace some 'type: ignore' statements with better type hinting | Jordan Cook | 2021-08-14 | 1 | -1/+1 |
| * | Parallelize unit tests per module instead of per function | Jordan Cook | 2021-08-12 | 2 | -3/+4 |
| * | SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c... | Jordan Cook | 2021-08-10 | 1 | -6/+10 |
| * | For filesystem backend, add an appropriate file extension to cache files | Jordan Cook | 2021-08-03 | 1 | -8/+23 |
| * | Add a `BaseCache.delete_urls()` method | Jordan Cook | 2021-08-02 | 1 | -0/+4 |
| * | Update `DbDict.bulk_delete()` to support deleting more items than SQLite's va... | Jordan Cook | 2021-08-02 | 1 | -8/+16 |
| * | Update `DbCache.clear()` to succeed even if the database is corrupted | Jordan Cook | 2021-08-02 | 1 | -13/+31 |
| * | Add doc section and sample response for YAML serializer | Jordan Cook | 2021-07-21 | 1 | -2/+2 |
| * | Add CachedResponse.cache_key attribute and update in CachedSession.send() | Jordan Cook | 2021-07-20 | 1 | -6/+5 |
| * | Improve type annotations and fix type checking errors | Jordan Cook | 2021-07-06 | 2 | -14/+16 |
| * | Some serialization fixes & updates: | Jordan Cook | 2021-07-03 | 4 | -19/+2 |
| * | Add option to exclude expired responses in keys(), values(), and response_cou... | Jordan Cook | 2021-07-03 | 1 | -18/+25 |
| * | Rephrase BaseCache.__str__() count as 'total rows' to be less ambiguous, sinc... | Jordan Cook | 2021-07-03 | 1 | -1/+4 |
| * | Add BaseCache.response_count() method to get an accurate count of valid respo... | Jordan Cook | 2021-07-03 | 1 | -0/+6 |
| * | Merge pull request #286 from parkerhancock/serialization_pipelines | Jordan Cook | 2021-06-22 | 4 | -17/+32 |
| |\ |
|
| | * | removed initialization serializer check | Parker Hancock | 2021-06-21 | 1 | -10/+0 |
| | * | addressing comments from JWCook | Parker Hancock | 2021-06-21 | 1 | -2/+1 |
| | * | extirpated 'is_binary' from pipelines | Parker Hancock | 2021-06-14 | 4 | -9/+19 |
| | * | initial serialization pipeline refactor | Parker Hancock | 2021-06-14 | 1 | -10/+26 |
| * | | Add ImportError to list of possible deserialization errors to catch | Jordan Cook | 2021-06-20 | 1 | -1/+1 |
| |/ |
|
| * | Integrate serializers with backends | Jordan Cook | 2021-06-11 | 6 | -23/+34 |
| * | Allow selecting a serializer by name, class, or instance (with same behavior ... | Jordan Cook | 2021-06-11 | 2 | -45/+13 |
| * | remove scratch code | Parker Hancock | 2021-06-03 | 1 | -6/+0 |
| * | remove 'ignored parameters' from request prior to caching | Parker Hancock | 2021-06-03 | 1 | -2/+11 |
| * | Make cattrs optional, and other cleanup | Jordan Cook | 2021-05-26 | 1 | -1/+0 |
| * | Split out serializers and models into separate classes | Jordan Cook | 2021-05-26 | 1 | -9/+10 |
| * | Refactor CachedResponse + nested classes using attrs + cattrs | Jordan Cook | 2021-05-26 | 1 | -2/+2 |