summaryrefslogtreecommitdiff
path: root/requests_cache/backends
Commit message (Expand)AuthorAgeFilesLines
* Redact ingored_parameters from CachedResponse.urlJordan Cook2021-09-151-1/+2
* Add some alises so fully qualified imports of DbDict, etc. don't breakJordan Cook2021-09-142-1/+7
* Re-enable mypy pre-commit hook with attrs as an explicit hook dependency for ...Jordan Cook2021-09-081-2/+4
* Add note about 'cache_name' argument usage in init_backend()Jordan Cook2021-09-061-10/+10
* Fix SQLiteCache.db_path; supposed to be a property, not a methodJordan Cook2021-09-061-0/+1
* Allow match_headers to optionally accept a list of specific headers to matchJordan Cook2021-09-061-2/+2
* Alias/rename 'include_get_headers' to 'match_headers' for clarity (backwards-...Jordan Cook2021-09-062-4/+4
* Add some basic info about creating DynamoDB tablesJordan Cook2021-09-011-33/+37
* Revert renaming DynamoDB backend classes; a minor inconsistency is probably b...Jordan Cook2021-08-302-11/+9
* Use pathlib.Path objects for all file paths in Filesystem and SQLite backendsJordan Cook2021-08-292-51/+47
* Allow has_url(), delete_url(), and create_key() to optionally take requests.R...Jordan Cook2021-08-282-21/+17
* Reorganize user docs: break down User Guide and Advanced Usage sections into ...Jordan Cook2021-08-264-7/+5
* Minor optimization: exclude redundant CachedResponse.cache_key and CachedHTTP...Jordan Cook2021-08-252-4/+6
* Add some notes about Redis persistenceJordan Cook2021-08-251-3/+10
* Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ...Jordan Cook2021-08-253-70/+11
* Add BaseCache.update() method as a shortcut for exporting to a different cach...Jordan Cook2021-08-251-53/+59
* Add FileCache.cache_dir propertyJordan Cook2021-08-251-0/+5
* Add another monkey-patch for sphinx-automodapi instead of installing from git...Jordan Cook2021-08-231-1/+1
* Fix incorrect location of redirects.sqlite when using filesystem backendJordan Cook2021-08-231-4/+12
* Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil...Jordan Cook2021-08-212-33/+49
* Add CLI arg to benchmark script to select a backendJordan Cook2021-08-202-1/+5
* Add support for SQLite in-memory databasesJordan Cook2021-08-202-21/+49
* Make DynamoDB and MongoDB naming consistentJordan Cook2021-08-204-12/+14
* Add FileCache.paths() wrapper method, and return a list instead of generatorJordan Cook2021-08-202-9/+22
* Better backend docsJordan Cook2021-08-207-46/+280
* Move autosummaries to module docstrings instead of template, to make them eas...Jordan Cook2021-08-202-1/+9
* Rename DbDict to SQLiteDict for consistency with other backends (with aliases...Jordan Cook2021-08-193-34/+22
* Add support for custom cache keysJordan Cook2021-08-141-2/+12
* Add support for Last-Modified + If-Modified-Since headersJordan Cook2021-08-141-15/+6
* Remove deprecated 'core' module and BaseCache.remove_old_entries()Jordan Cook2021-08-141-6/+0
* Replace some 'type: ignore' statements with better type hintingJordan Cook2021-08-141-1/+1
* Parallelize unit tests per module instead of per functionJordan Cook2021-08-122-3/+4
* SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c...Jordan Cook2021-08-101-6/+10
* For filesystem backend, add an appropriate file extension to cache filesJordan Cook2021-08-031-8/+23
* Add a `BaseCache.delete_urls()` methodJordan Cook2021-08-021-0/+4
* Update `DbDict.bulk_delete()` to support deleting more items than SQLite's va...Jordan Cook2021-08-021-8/+16
* Update `DbCache.clear()` to succeed even if the database is corruptedJordan Cook2021-08-021-13/+31
* Add doc section and sample response for YAML serializerJordan Cook2021-07-211-2/+2
* Add CachedResponse.cache_key attribute and update in CachedSession.send()Jordan Cook2021-07-201-6/+5
* Improve type annotations and fix type checking errorsJordan Cook2021-07-062-14/+16
* Some serialization fixes & updates:Jordan Cook2021-07-034-19/+2
* Add option to exclude expired responses in keys(), values(), and response_cou...Jordan Cook2021-07-031-18/+25
* Rephrase BaseCache.__str__() count as 'total rows' to be less ambiguous, sinc...Jordan Cook2021-07-031-1/+4
* Add BaseCache.response_count() method to get an accurate count of valid respo...Jordan Cook2021-07-031-0/+6
* Merge pull request #286 from parkerhancock/serialization_pipelinesJordan Cook2021-06-224-17/+32
|\
| * removed initialization serializer checkParker Hancock2021-06-211-10/+0
| * addressing comments from JWCookParker Hancock2021-06-211-2/+1
| * extirpated 'is_binary' from pipelinesParker Hancock2021-06-144-9/+19
| * initial serialization pipeline refactorParker Hancock2021-06-141-10/+26
* | Add ImportError to list of possible deserialization errors to catchJordan Cook2021-06-201-1/+1
|/