index
:
delta/python-packages/requests-cache.git
codecov
dependabot/github_actions/snok/install-poetry-1.2
dependabot/github_actions/snok/install-poetry-1.3
dependabot/github_actions/supercharge/redis-github-action-1.4.0
dependabot/pip/attrs-21.4.0
dependabot/pip/cattrs-1.10.0
dependabot/pip/cattrs-1.9.0
dependabot/pip/coverage-6.1
dependabot/pip/coverage-6.2
dependabot/pip/furo-2021.10.9
dependabot/pip/furo-2021.11.12.1
dependabot/pip/furo-2022.1.2
dependabot/pip/myst-parser-0.16.0
dependabot/pip/nox-2022.1.7
dependabot/pip/pre-commit-2.15.0
dependabot/pip/psutil-5.9.0
dependabot/pip/pytest-xdist-2.4.0
dependabot/pip/pytest-xdist-2.5.0
dependabot/pip/pytest-xdist-3.3.0
dependabot/pip/redis-4.1.0
dependabot/pip/responses-0.14.0
dependabot/pip/responses-0.15.0
dependabot/pip/rich-10.11.0
dependabot/pip/rich-10.12.0
dependabot/pip/rich-10.13.0
dependabot/pip/sphinx-4.3.0
dependabot/pip/sphinx-4.4.0
dependabot/pip/sphinx-autodoc-typehints-1.13.0
dependabot/pip/sphinx-autodoc-typehints-1.14.1
dependabot/pip/sphinx-automodapi-0.14.0
dependabot/pip/sphinx-inline-tabs-2022.1.2b11
dependabot/pip/sphinx-notfound-page-0.8
dependabot/pip/ujson-4.2.0
dependabot/pip/ujson-4.3.0
dependabot/pip/ujson-5.1.0
dev
explicit-exports
history-example
lru
main
master
memcached
mongita
orm
patch-module
pre-release
v0.7
v1.x.x
wip-req-compat
github.com: reclosedev/requests-cache
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
requests_cache
/
backends
Commit message (
Expand
)
Author
Age
Files
Lines
*
Minor formatting changes for SQL queries
Jordan Cook
2021-04-29
1
-20
/
+24
*
Some more improvements for bulk deletes in SQLite backend
Jordan Cook
2021-04-29
1
-10
/
+32
*
Improve performance a bit for remove_expired_responses()
Jordan Cook
2021-04-29
1
-22
/
+31
*
Add BaseCache.keys() and values() methods
Jordan Cook
2021-04-27
2
-18
/
+45
*
Bump black version
Jordan Cook
2021-04-26
1
-1
/
+0
*
Add use_temp option to SQLite backend
Jordan Cook
2021-04-22
2
-8
/
+21
*
Move storage class __str__ methods to base class, and just show keys instead ...
Jordan Cook
2021-04-22
6
-15
/
+3
*
Store responses for filesystem backend in a 'responses' subdirectory, to avoi...
Jordan Cook
2021-04-22
1
-5
/
+7
*
For SQLite and filesystem backends, resolve file paths in BaseStorage class r...
Jordan Cook
2021-04-21
2
-8
/
+6
*
Add a filesystem backend
Jordan Cook
2021-04-21
3
-1
/
+93
*
Use shared connection to create initial SQLite table
Jordan Cook
2021-04-21
1
-1
/
+1
*
Merge pull request #240 from jsemric/use-thread-local-connections-for-sqlite
Jordan Cook
2021-04-21
1
-41
/
+21
|
\
|
*
remove locking of sqlite connection
jsemric
2021-04-21
1
-18
/
+10
|
*
do not lock connection on read
jsemric
2021-04-21
1
-4
/
+10
|
*
make bulk commit use thread-local connection
jsemric
2021-04-21
1
-26
/
+7
|
*
use thread local sqlite connections
jsemric
2021-04-20
1
-16
/
+17
*
|
Fix DynamoDbDict.__iter__ to return keys instead of values; update tests to t...
Jordan Cook
2021-04-20
1
-1
/
+1
|
/
*
Allow passing any valid backend connection kwargs via BaseCache
Jordan Cook
2021-04-19
7
-100
/
+106
*
Add option to manually cache response objects
Jordan Cook
2021-04-19
1
-1
/
+2
*
Replace deprecated pymongo Collection.count() with estimated_document_count()
v0.6.3
Jordan Cook
2021-04-19
2
-2
/
+2
*
Don't show warnings for 'include_get_headers' and 'ignored_parameters' kwargs...
Jordan Cook
2021-04-18
1
-7
/
+16
*
Update GridFSPickleDict.__delitem__ to raise a KeyError for missing items
Jordan Cook
2021-04-12
1
-4
/
+8
*
Add kwargs for AWS creds for DynamoDbDict
Jordan Cook
2021-04-12
1
-1
/
+11
*
Update all backend-specific integration tests to fail quickly if not set up, ...
Jordan Cook
2021-04-12
1
-11
/
+11
*
Make parent dirs for new SQLite databases
Jordan Cook
2021-04-11
1
-8
/
+18
*
Demote most logging.info statements to debug
Jordan Cook
2021-04-10
2
-3
/
+3
*
Handle errors due to invalid responses in `BaseCache.urls`
Jordan Cook
2021-04-10
1
-14
/
+18
*
Add remove_old_entries() back to BaseCache as an alias with a DeprecationWarning
Jordan Cook
2021-04-10
1
-0
/
+5
*
Improvements to Sphinx documentation:
Jordan Cook
2021-04-03
3
-26
/
+24
*
Improve backend initialization:
Jordan Cook
2021-04-02
2
-70
/
+79
*
Add 'verify' param to cache key
Jordan Cook
2021-04-01
1
-2
/
+2
*
Rename 'add_key_mapping' to 'save_redirect' and take a request instead of a c...
Jordan Cook
2021-03-31
1
-6
/
+7
*
Fix BaseCache.urls to return only response URLs (no redirect keys)
Jordan Cook
2021-03-30
1
-1
/
+1
*
For SQLite backend, run VACUUM after remove_expired_responses()
Jordan Cook
2021-03-30
1
-0
/
+10
*
Move cache key utilities to a separate module
Jordan Cook
2021-03-30
2
-102
/
+12
*
Add normalization for request json
Jordan Cook
2021-03-30
2
-5
/
+30
*
Use url-normalize for additional URL normalization for cache keys
Jordan Cook
2021-03-30
1
-2
/
+6
*
Also remove invalid responses when running remove_expired_responses()
Jordan Cook
2021-03-30
2
-13
/
+16
*
Add logging to main cache operations
Jordan Cook
2021-03-30
2
-16
/
+33
*
Update get_response + tests to check additional error types
Jordan Cook
2021-03-29
1
-1
/
+1
*
Remove some redundant module docstrings, and fix some ref links
Jordan Cook
2021-03-29
2
-13
/
+1
*
Handle AttributeErrors when a cached item can't be deserialized
Jordan Cook
2021-03-29
1
-1
/
+4
*
Show warning when using pickle without itsdangerous
Jordan Cook
2021-03-28
2
-4
/
+12
*
Expose timeout parameter for SQLite backend
Jordan Cook
2021-03-24
1
-15
/
+15
*
Pass along optional kwargs to all storage classes, and make default table nam...
Jordan Cook
2021-03-24
7
-42
/
+41
*
Enable DynamoDB integration test with GitHub Actions and local docker-compose...
Jordan Cook
2021-03-24
1
-1
/
+1
*
Combine storage classes from backends.storage.* with their respective backend...
Jordan Cook
2021-03-24
12
-537
/
+453
*
Add optional integration with intsdangerous for safer serialization
Jordan Cook
2021-03-24
6
-45
/
+89
*
Rename BaseCache.keys_map property and its associated table to 'redirects'
Jordan Cook
2021-03-24
6
-18
/
+16
*
Add a 'urls' property on BaseCache to get all cached URLs
Jordan Cook
2021-03-24
1
-0
/
+8
[next]