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
/
sqlite.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add some alises so fully qualified imports of DbDict, etc. don't break
Jordan Cook
2021-09-14
1
-0
/
+6
*
Fix SQLiteCache.db_path; supposed to be a property, not a method
Jordan Cook
2021-09-06
1
-0
/
+1
*
Use pathlib.Path objects for all file paths in Filesystem and SQLite backends
Jordan Cook
2021-08-29
1
-21
/
+18
*
Reorganize user docs: break down User Guide and Advanced Usage sections into ...
Jordan Cook
2021-08-26
1
-1
/
+1
*
Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ...
Jordan Cook
2021-08-25
1
-65
/
+6
*
Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil...
Jordan Cook
2021-08-21
1
-17
/
+37
*
Add CLI arg to benchmark script to select a backend
Jordan Cook
2021-08-20
1
-1
/
+1
*
Add support for SQLite in-memory databases
Jordan Cook
2021-08-20
1
-20
/
+41
*
Add FileCache.paths() wrapper method, and return a list instead of generator
Jordan Cook
2021-08-20
1
-1
/
+3
*
Better backend docs
Jordan Cook
2021-08-20
1
-2
/
+110
*
Rename DbDict to SQLiteDict for consistency with other backends (with aliases...
Jordan Cook
2021-08-19
1
-29
/
+13
*
SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c...
Jordan Cook
2021-08-10
1
-6
/
+10
*
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
*
Improve type annotations and fix type checking errors
Jordan Cook
2021-07-06
1
-3
/
+3
*
Some serialization fixes & updates:
Jordan Cook
2021-07-03
1
-1
/
+0
*
extirpated 'is_binary' from pipelines
Parker Hancock
2021-06-14
1
-1
/
+1
*
Integrate serializers with backends
Jordan Cook
2021-06-11
1
-6
/
+9
*
Adjust line length for black + isort
Jordan Cook
2021-04-30
1
-2
/
+6
*
Implement a faster bulk delete method for each backend
Jordan Cook
2021-04-30
1
-25
/
+28
*
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
*
Add BaseCache.keys() and values() methods
Jordan Cook
2021-04-27
1
-1
/
+5
*
Add use_temp option to SQLite backend
Jordan Cook
2021-04-22
1
-8
/
+18
*
Move storage class __str__ methods to base class, and just show keys instead ...
Jordan Cook
2021-04-22
1
-3
/
+0
*
For SQLite and filesystem backends, resolve file paths in BaseStorage class r...
Jordan Cook
2021-04-21
1
-2
/
+1
*
Add a filesystem backend
Jordan Cook
2021-04-21
1
-1
/
+1
*
Use shared connection to create initial SQLite table
Jordan Cook
2021-04-21
1
-1
/
+1
*
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
*
Allow passing any valid backend connection kwargs via BaseCache
Jordan Cook
2021-04-19
1
-9
/
+20
*
Make parent dirs for new SQLite databases
Jordan Cook
2021-04-11
1
-8
/
+18
*
Improvements to Sphinx documentation:
Jordan Cook
2021-04-03
1
-1
/
+1
*
Improve backend initialization:
Jordan Cook
2021-04-02
1
-11
/
+14
*
For SQLite backend, run VACUUM after remove_expired_responses()
Jordan Cook
2021-03-30
1
-0
/
+10
*
Add logging to main cache operations
Jordan Cook
2021-03-30
1
-8
/
+10
*
Show warning when using pickle without itsdangerous
Jordan Cook
2021-03-28
1
-0
/
+1
*
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
1
-13
/
+14
*
Combine storage classes from backends.storage.* with their respective backend...
Jordan Cook
2021-03-24
1
-9
/
+144
*
Rename BaseCache.keys_map property and its associated table to 'redirects'
Jordan Cook
2021-03-24
1
-1
/
+1
*
Refactor CachedSession to be usable as a mixin class
Jordan Cook
2021-03-04
1
-1
/
+1
*
Remove all python 2 compatibility
Jordan Cook
2021-02-26
1
-1
/
+0
*
Apply code formatting with black + isort
Jordan Cook
2021-02-26
1
-3
/
+3
*
Fix TypeError with DbPickleDict initialization; closes #136
Jordan Cook
2021-02-25
1
-1
/
+1
*
#6 Add optional support for including headers to cache key in GET requests
Roman Haritonov
2015-01-17
1
-1
/
+1
*
pep8
Roman Haritonov
2015-01-17
1
-1
/
+0
*
move storage implementations to package
Roman Haritonov
2013-01-12
1
-1
/
+1
[next]