summaryrefslogtreecommitdiff
path: root/docs/api/requests_cache.backends.sqlite.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-04-11 21:03:50 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-04-16 21:08:42 -0500
commitd6ee9143965d53dae44ca3a98802b2cc7ad6eeb7 (patch)
tree96e38c3f7289a0ff3a46c23df3f1e5b3b7c1a940 /docs/api/requests_cache.backends.sqlite.md
parent166f5690fb8d5b067f839fa8ffb9421cf1b8a7e7 (diff)
downloadrequests-cache-d6ee9143965d53dae44ca3a98802b2cc7ad6eeb7.tar.gz
Move detailed backend docs from rst docstings to md files
Diffstat (limited to 'docs/api/requests_cache.backends.sqlite.md')
-rw-r--r--docs/api/requests_cache.backends.sqlite.md90
1 files changed, 90 insertions, 0 deletions
diff --git a/docs/api/requests_cache.backends.sqlite.md b/docs/api/requests_cache.backends.sqlite.md
new file mode 100644
index 0000000..eea2407
--- /dev/null
+++ b/docs/api/requests_cache.backends.sqlite.md
@@ -0,0 +1,90 @@
+# SQLite
+```{image} ../_static/sqlite.png
+```
+
+[SQLite](https://www.sqlite.org/) is a fast and lightweight SQL database engine that stores data
+either in memory or in a single file on disk.
+
+## Use Cases
+Despite its simplicity, SQLite is a powerful tool. For example, it's the primary storage system for
+a number of common applications including Dropbox, Firefox, and Chrome. It's well suited for
+caching, and requires no extra configuration or dependencies, which is why it's the default backend
+for requests-cache.
+
+## Cache Files
+- See {ref}`files` for general info on specifying cache paths
+- If you specify a name without an extension, the default extension `.sqlite` will be used
+
+### In-Memory Caching
+SQLite also supports [in-memory databases](https://www.sqlite.org/inmemorydb.html).
+You can enable this (in "shared" memory mode) with the `use_memory` option:
+```python
+>>> session = CachedSession('http_cache', use_memory=True)
+```
+
+Or specify a memory URI with additional options:
+```python
+>>> session = CachedSession(':file:memdb1?mode=memory')
+```
+
+Or just `:memory:`, if you are only using the cache from a single thread:
+```python
+>>> session = CachedSession(':memory:')
+```
+
+## Performance
+When working with average-sized HTTP responses (\< 1MB) and using a modern SSD for file storage, you
+can expect speeds of around:
+- Write: 2-8ms
+- Read: 0.2-0.6ms
+
+Of course, this will vary based on hardware specs, response size, and other factors.
+
+## Concurrency
+SQLite supports concurrent access, so it is safe to use from a multi-threaded and/or multi-process
+application. It supports unlimited concurrent reads. Writes, however, are queued and run in serial,
+so if you need to make large volumes of concurrent requests, you may want to consider a different
+backend that's specifically made for that kind of workload, like {py:class}`.RedisCache`.
+
+## Hosting Services and Filesystem Compatibility
+There are some caveats to using SQLite with some hosting services, based on what kind of storage is
+available:
+
+- NFS:
+ - SQLite may be used on a NFS, but is usually only safe to use from a single process at a time.
+ See the [SQLite FAQ](https://www.sqlite.org/faq.html#q5) for details.
+ - PythonAnywhere is one example of a host that uses NFS-backed storage. Using SQLite from a
+ multiprocess application will likely result in `sqlite3.OperationalError: database is locked`.
+- Ephemeral storage:
+ - Heroku [explicitly disables SQLite](https://devcenter.heroku.com/articles/sqlite3) on its dynos.
+ - AWS [EC2](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html),
+ [Lambda (depending on configuration)](https://aws.amazon.com/blogs/compute/choosing-between-aws-lambda-data-storage-options-in-web-apps/),
+ and some other AWS services use ephemeral storage that only persists for the lifetime of the
+ instance. This is fine for short-term caching. For longer-term persistance, you can use an
+ [attached EBS volume](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html).
+
+## Connection Options
+The SQLite backend accepts any keyword arguments for {py:func}`sqlite3.connect`. These can be passed
+via {py:class}`.CachedSession`:
+```python
+>>> session = CachedSession('http_cache', timeout=30)
+```
+
+Or via {py:class}`.SQLiteCache`:
+```python
+>>> backend = SQLiteCache('http_cache', timeout=30)
+>>> session = CachedSession(backend=backend)
+```
+
+## API Reference
+```{eval-rst}
+.. automodsumm:: requests_cache.backends.sqlite
+ :classes-only:
+ :nosignatures:
+
+.. automodule:: requests_cache.backends.sqlite
+ :members:
+ :undoc-members:
+ :inherited-members:
+ :show-inheritance:
+```