Litestar SAQ
[!IMPORTANT] This plugin currently contains minimal features and is a work-in-progress
Installation
pip install litestar-saq
Usage
Here is a basic application that demonstrates how to use the plugin.
from __future__ import annotations
from litestar import Litestar
from litestar_saq import QueueConfig, SAQConfig, SAQPlugin
saq = SAQPlugin(config=SAQConfig(redis_url="redis://localhost:6397/0", queue_configs=[QueueConfig(name="samples")]))
app = Litestar(plugins=[saq])
You can start a background worker with the following command now:
litestar --app-dir=examples/ --app basic:app workers run
Using Litestar app from env: 'basic:app'
Starting SAQ Workers ──────────────────────────────────────────────────────────────────
INFO - 2023-10-04 17:39:03,255 - saq - worker - Worker starting: Queue<redis=Redis<ConnectionPool<Connection<host=localhost,port=6397,db=0>>>, name='samples'>
INFO - 2023-10-04 17:39:06,545 - saq - worker - Worker shutting down
You can also start the process for only specific queues. This is helpful if you want separated processes working on different queues instead of combining them.
litestar --app-dir=examples/ --app basic:app workers run --queues sample
Using Litestar app from env: 'basic:app'
Starting SAQ Workers ──────────────────────────────────────────────────────────────────
INFO - 2023-10-04 17:39:03,255 - saq - worker - Worker starting: Queue<redis=Redis<ConnectionPool<Connection<host=localhost,port=6397,db=0>>>, name='samples'>
INFO - 2023-10-04 17:39:06,545 - saq - worker - Worker shutting down
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file litestar_saq-0.1.20.tar.gz.
File metadata
- Download URL: litestar_saq-0.1.20.tar.gz
- Upload date:
- Size: 70.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e46cb187af3f95e2de919511c4d1ff9ebf82410e739f56b2756ea3baf9a72d75
|
|
| MD5 |
b17349b021bfd2636f839d2a38cc02a5
|
|
| BLAKE2b-256 |
74f9cc00601480d145ff73eda0bb817b4647cabcc8c8d6c5d114d3a09bacbc68
|
File details
Details for the file litestar_saq-0.1.20-py3-none-any.whl.
File metadata
- Download URL: litestar_saq-0.1.20-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ff3c187849f495c8089db064bcaaf1729735010d2998911ecb28af07ad681d4
|
|
| MD5 |
a7bca2c866a00ad5e2a27ab940f26d6c
|
|
| BLAKE2b-256 |
dd8f9ba04cf6ebf5baf4d29714fecab99570f301231047552b3cd7584c308dd9
|