summaryrefslogtreecommitdiff
path: root/requests_cache/backends/sqlite.py
Commit message (Expand)AuthorAgeFilesLines
...
* Better backend docsJordan Cook2021-08-201-2/+110
* Rename DbDict to SQLiteDict for consistency with other backends (with aliases...Jordan Cook2021-08-191-29/+13
* SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c...Jordan Cook2021-08-101-6/+10
* 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
* Improve type annotations and fix type checking errorsJordan Cook2021-07-061-3/+3
* Some serialization fixes & updates:Jordan Cook2021-07-031-1/+0
* extirpated 'is_binary' from pipelinesParker Hancock2021-06-141-1/+1
* Integrate serializers with backendsJordan Cook2021-06-111-6/+9
* Adjust line length for black + isortJordan Cook2021-04-301-2/+6
* Implement a faster bulk delete method for each backendJordan Cook2021-04-301-25/+28
* Minor formatting changes for SQL queriesJordan Cook2021-04-291-20/+24
* Some more improvements for bulk deletes in SQLite backendJordan Cook2021-04-291-10/+32
* Add BaseCache.keys() and values() methodsJordan Cook2021-04-271-1/+5
* Add use_temp option to SQLite backendJordan Cook2021-04-221-8/+18
* Move storage class __str__ methods to base class, and just show keys instead ...Jordan Cook2021-04-221-3/+0
* For SQLite and filesystem backends, resolve file paths in BaseStorage class r...Jordan Cook2021-04-211-2/+1
* Add a filesystem backendJordan Cook2021-04-211-1/+1
* Use shared connection to create initial SQLite tableJordan Cook2021-04-211-1/+1
* remove locking of sqlite connectionjsemric2021-04-211-18/+10
* do not lock connection on readjsemric2021-04-211-4/+10
* make bulk commit use thread-local connectionjsemric2021-04-211-26/+7
* use thread local sqlite connectionsjsemric2021-04-201-16/+17
* Allow passing any valid backend connection kwargs via BaseCacheJordan Cook2021-04-191-9/+20
* Make parent dirs for new SQLite databasesJordan Cook2021-04-111-8/+18
* Improvements to Sphinx documentation:Jordan Cook2021-04-031-1/+1
* Improve backend initialization:Jordan Cook2021-04-021-11/+14
* For SQLite backend, run VACUUM after remove_expired_responses()Jordan Cook2021-03-301-0/+10
* Add logging to main cache operationsJordan Cook2021-03-301-8/+10
* Show warning when using pickle without itsdangerousJordan Cook2021-03-281-0/+1
* Expose timeout parameter for SQLite backendJordan Cook2021-03-241-15/+15
* Pass along optional kwargs to all storage classes, and make default table nam...Jordan Cook2021-03-241-13/+14
* Combine storage classes from backends.storage.* with their respective backend...Jordan Cook2021-03-241-9/+144
* Rename BaseCache.keys_map property and its associated table to 'redirects'Jordan Cook2021-03-241-1/+1
* Refactor CachedSession to be usable as a mixin classJordan Cook2021-03-041-1/+1
* Remove all python 2 compatibilityJordan Cook2021-02-261-1/+0
* Apply code formatting with black + isortJordan Cook2021-02-261-3/+3
* Fix TypeError with DbPickleDict initialization; closes #136Jordan Cook2021-02-251-1/+1
* #6 Add optional support for including headers to cache key in GET requestsRoman Haritonov2015-01-171-1/+1
* pep8Roman Haritonov2015-01-171-1/+0
* move storage implementations to packageRoman Haritonov2013-01-121-1/+1
* url -> keyRoman Haritonov2013-01-121-1/+1
* Use relative importsRoman Haritonov2012-05-111-2/+2
* Extension of sqlite database filename is now configurableRoman Haritonov2012-05-061-3/+5
* Remove reusable_dict parameter because of new connection logicRoman Haritonov2012-05-041-1/+1
* clarify docs about backend optionsRoman Haritonov2012-05-021-1/+1
* add fast_save option to DbCache backendRoman Haritonov2012-05-021-2/+4
* connection option for MongoCacheRoman2012-04-111-2/+2
* refactor: rename MemoryCache to BaseCacheRoman2012-04-111-2/+2
* sqlite cache now stored in one database into different tablesRoman2012-04-091-8/+4