summaryrefslogtreecommitdiff
path: root/docs/user_guide
Commit message (Collapse)AuthorAgeFilesLines
* Fix outdated example in docsJordan Cook2023-05-151-1/+1
| | | | Fixes #824
* Allow regexes for URL expiration patternsSimon Leiner2023-03-241-5/+7
| | | | | This allows for more fine-grained control over URL patterns than globbing in the rare cases where that is needed.
* Fix typosJordan Cook2023-03-011-1/+1
|
* Update docs and screenshots for DynamoDBJordan Cook2023-03-011-6/+19
|
* Fix example with requests-ratelimiterJordan Cook2023-02-181-1/+2
|
* Docs: Fix FuturesSession typoElan Ruusamäe2023-01-131-3/+3
|
* Minor edits for cache inspection pageJordan Cook2022-12-131-1/+6
|
* TypoKevin Lin2022-10-261-1/+1
| | | different was spelled incorrectly
* Add 'url' argument to BaseCache.contains() and delete() for similarity to ↵Jordan Cook2022-09-302-7/+19
| | | | has_url() and delete_url()
* Add ttl_offset argument for Redis backendJordan Cook2022-09-301-4/+8
|
* Add delete() function for patcherJordan Cook2022-09-291-1/+2
|
* Add more examples to docs for BaseCache.delete()Jordan Cook2022-09-292-8/+32
|
* Add method to recreate cache keysJordan Cook2022-08-231-0/+14
|
* Use sphinx-design tabs instead of sphinx-inline-tabsJordan Cook2022-06-173-12/+29
|
* Use sphinx-design dropdown instead of custom CSS/JSJordan Cook2022-06-178-42/+100
|
* Update to FontAwesome 6Jordan Cook2022-06-1714-14/+14
|
* Related doc updatesJordan Cook2022-06-174-4/+5
|
* Update docsJordan Cook2022-06-165-41/+100
|
* Update tests and docsJordan Cook2022-06-112-32/+39
|
* Split up remove_expired_reponses() into remove() and reset_expiration() ↵Jordan Cook2022-06-112-8/+8
| | | | methods, with more granular arguments
* Update docs and changelogJordan Cook2022-06-102-11/+32
|
* Update repo links, changelog, and contributorsJordan Cook2022-05-155-10/+10
|
* use https for links谭九鼎2022-05-096-30/+30
|
* Implement Cache-Control: stale-while-revalidateJordan Cook2022-05-042-1/+30
|
* Add 'older_than' argument to remove_expired_responses()Jordan Cook2022-05-031-1/+8
|
* Add always_revalidate session optionJordan Cook2022-05-031-0/+9
|
* Update docs and changelogJordan Cook2022-04-223-15/+8
|
* Add screenshots and info for viewing DynamoDB responsesJordan Cook2022-04-202-22/+47
|
* Add support for DynamoDB TTLJordan Cook2022-04-201-1/+16
|
* Add an example CloudFormation template for DynamoDBJordan Cook2022-04-191-8/+28
|
* Update some user docsJordan Cook2022-04-193-17/+20
|
* Add support for Cache-Control: stale-if-errorJordan Cook2022-04-182-0/+9
|
* Add support for Cache-Control: max-stale and min-freshJordan Cook2022-04-181-0/+2
|
* Add links to source files on Examples pageJordan Cook2022-04-181-4/+4
|
* Turn VCR converter into an example in the docs instead of a library featureJordan Cook2022-04-181-0/+11
|
* Move backend docs to user guide, separate from API reference docsJordan Cook2022-04-178-36/+408
|
* Update general expiration docsJordan Cook2022-04-151-5/+13
|
* Add some more notes about SQLite and Redis backendsJordan Cook2022-04-111-3/+2
|
* Add default list of ignored_parameters for most common authentication ↵Jordan Cook2022-04-101-0/+7
| | | | params/headers
* Refactor refresh/revalidate behaviorJordan Cook2022-04-092-29/+51
| | | | | | | | | | | | | | | * Rename two (unreleased) options to be more consistent with browser behavior: * `revalidate()` -> `refresh()` * `refresh()` -> `force_refresh()` * Revert `RequestSettings` changes and use just kwargs instead for per-request settings * Add full type hints back to extra kwargs for `CachedSession.send()` * Fix a bug in which some kwargs specific to requests-cache could get passed to `requests.Session.send()` * Use 'must-revalidate' as a temporary header for a user-requested refresh * Refer to expiration value of 0 more accurately as 'expire immediately' rather than 'do not cache' * It may potentially be saved and used with revalidation, depending on other headers/settings * `DO_NOT_CACHE` now has a different value but same effect * Refer to constants in docs instead of 0, -1, etc. * Log more details about post-read and pre-cache checks
* Update docs, doc dependencies, changelog, and contributorsJordan Cook2022-04-013-12/+30
| | | | | Also: Restrict redis-py to <4.2, which breaks parameter forwarding on python 3.7 and 3.8
* More code cleanup and commentsJordan Cook2022-03-291-2/+2
|
* Add a 'Choosing a Backend' section to docsJordan Cook2022-03-171-3/+23
|
* Swap out appdirs for platformdirsJordan Cook2022-03-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | * platformdirs is a more actively maintained fork of appdirs. * Also relax requirements a bit for attrs and urllib (minimum instead of caret constraint) Dependabot update: Bump responses from 0.16.0 to 0.19.0 Bumps [responses](https://github.com/getsentry/responses) from 0.16.0 to 0.19.0. - [Release notes](https://github.com/getsentry/responses/releases) - [Changelog](https://github.com/getsentry/responses/blob/master/CHANGES) - [Commits](https://github.com/getsentry/responses/compare/0.16.0...0.19.0) --- updated-dependencies: - dependency-name: responses dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* Add support for Cache-Control: only-if-cached and corresponding options for ↵Jordan Cook2022-03-112-0/+57
| | | | request() and send()
* Update changelog, docs, and bump versionJordan Cook2022-03-113-9/+9
|
* Change wording a bit on cache header behaviorJordan Cook2022-02-241-9/+8
|
* Fix serialization in filesystem backend with binary content that is also ↵Jordan Cook2022-02-151-4/+7
| | | | valid UTF-8
* Use only integers for expire_after values in tests and docsJordan Cook2022-02-151-3/+3
|
* Update changelogJordan Cook2021-12-021-2/+2
|