| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add use_temp option to SQLite backend | Jordan Cook | 2021-04-22 | 1 | -8/+18 |
| | | | | | Closes #243 | ||||
| * | Move storage class __str__ methods to base class, and just show keys instead ↵ | Jordan Cook | 2021-04-22 | 1 | -3/+0 |
| | | | | | of items | ||||
| * | For SQLite and filesystem backends, resolve file paths in BaseStorage class ↵ | Jordan Cook | 2021-04-21 | 1 | -2/+1 |
| | | | | | rather than BaseCache class | ||||
| * | 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 |
| | | | | | | | | | * Pass `**kwargs` to backend storage classes, split out any that are valid for the backend-specific connection function/class, and pass them to the connection * Add intersphinx links to docs for dependencies * Update and format some more backend class docstrings * Remove 'Unrecognized keyword arguments' warning from `BaseStorage` * Turn `warnings.warn` about using secret keys into a `logging.warning` (due to complaints about too many messages) | ||||
| * | 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 |
| | | | | | | | | | | | | | | | * Use sphinx-apidoc to auto-generate sources for backend modules * Still manually adding other modules for more control over formatting * Add a couple more contributors I missed * Include contributors on readthedocs * Add 'all' Makefile target and clean auto-generated docs * Remove unused build targets in Makefile * Update interpshinx links that have moved * Fix some interpshinx links * Fix some `:ref:` links using auto-generated labels (and some manually added labels where convenient) * Fix some docstring formatting * Fix remaining build warnings | ||||
| * | Improve backend initialization: | Jordan Cook | 2021-04-02 | 1 | -11/+14 |
| | | | | | | | | * Also allow passing a backend class (in addition to backend name and instance) * Detect duplicate params: Backends have different keyword args equivalent to the `cache_name` positional arg, for example `db_name`. If one of these is passed as a keyword arg, it results in a `TypeError` due to duplicate args (See #94). * For backends without dependencies installed, use a placeholder class to delay and re-raise the original `ImportError` * Add type annotations | ||||
| * | 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 ↵ | Jordan Cook | 2021-03-24 | 1 | -13/+14 |
| | | | | | names consistent across backends (`'http_cache'`) | ||||
| * | Combine storage classes from backends.storage.* with their respective ↵ | Jordan Cook | 2021-03-24 | 1 | -9/+144 |
| | | | | | backends in backends.* | ||||
| * | 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 |
| | | |||||
| * | url -> key | Roman Haritonov | 2013-01-12 | 1 | -1/+1 |
| | | |||||
| * | Use relative imports | Roman Haritonov | 2012-05-11 | 1 | -2/+2 |
| | | |||||
| * | Extension of sqlite database filename is now configurable | Roman Haritonov | 2012-05-06 | 1 | -3/+5 |
| | | |||||
| * | Remove reusable_dict parameter because of new connection logic | Roman Haritonov | 2012-05-04 | 1 | -1/+1 |
| | | |||||
| * | clarify docs about backend options | Roman Haritonov | 2012-05-02 | 1 | -1/+1 |
| | | |||||
| * | add fast_save option to DbCache backend | Roman Haritonov | 2012-05-02 | 1 | -2/+4 |
| | | |||||
| * | connection option for MongoCache | Roman | 2012-04-11 | 1 | -2/+2 |
| | | |||||
| * | refactor: rename MemoryCache to BaseCache | Roman | 2012-04-11 | 1 | -2/+2 |
| | | |||||
| * | sqlite cache now stored in one database into different tables | Roman | 2012-04-09 | 1 | -8/+4 |
| | | |||||
| * | Some TODOs, docstrings | Roman | 2012-04-08 | 1 | -3/+6 |
| | | |||||
| * | More docstrings. Added LICENSE | Roman | 2012-04-08 | 1 | -2/+14 |
| | | |||||
| * | MemoryCache now reduces and Response. More docstrings | Roman | 2012-04-08 | 1 | -14/+3 |
| | | |||||
| * | initial commit | Roman | 2012-04-08 | 1 | -0/+26 |
