StiQueue is a lightweight messaging queue system designed to be simple, flexible, and easy to use.
Project description
StiQueue, short for "stick queue," is inspired by the simplicity of a stick figure. Just as a stick figure represents minimalism and clarity, StiQueue is a lightweight messaging queue system designed to be simple, flexible, and easy to use.
Documentation
Explore the full StiQueue Documentation for in-depth code references and usage guides.
Getting Started
SQServer
SQServer is the core of StiQueue and manages the messaging queue. It can be run directly with minimal setup.
Running the Server
Once the code is downloaded, you can start the server with:
PYTHONPATH=src python -m stiqueue.sqserver --host 0.0.0.0 --port 1234 --debug
💡 The --debug flag is useful during the first run to monitor incoming and outgoing messages.
Server Options
Below are the available command-line options for the server:
usage: StiQueue Server [-h] [--debug] [--host HOST] [--port PORT] [--buff-size BUFF_SIZE]
A message queue server
options:
-h, --help show this help message and exit
--debug Showing debug messages
--host HOST The host address of the server
--port PORT The port to listen on
--buff-size BUFF_SIZE The size of the buffer
--log LOG The log file
SQClient
The SQClient allows you to interact with the server to enqueue (send) and dequeue (receive) messages.
Ensure the host and port of the client match the server configuration.
Blocking Dequeue: The deq method is blocking, which is more resource-efficient than polling.
Quick Start
- Initialize the Client:
from stiqueue import SQClient
client = SQClient()
- Enqueue a Message:
client.enq("Hello, World!")
- Dequeue a Message:
msg = client.deq().decode()
print("Received:", msg)
Often, the client that sends the messages is different from the one receiving them. For instance, one client (or app) might send requests, while another client fetches these messages or requests when a resource becomes available. It is also helpful to use a Thread Pool, such as TPool, to manage the number of running threads.
Methods
The following methods are supported by stiqueue:
enq(msg: bytes): Adds a message to the queue.deq() -> bytes: Retrieves the next message from the queue (blocking call).cnt() -> int: Returns the number of messages currently in the queue.peek(n: int = 0, sep: str = ",") -> bytes: Retrieves up tonmessages from the queue without removing them.- If
n=0, returns all available messages. - Otherwise, returns up to
nmessages, separated bysep. - If the queue is empty, returns an empty byte string (
b"").
- If
Note: When
ack_required=Trueand the client process crashes after callingdeq, messages are automatically re-queued to ensure they are not lost.
Examples
Basic Client Usage
The following is a simple example of how to use the SQClient to enqueue and dequeue messages from the server:
from stiqueue import SQClient
# Initialize the client
client = SQClient()
# Enqueue messages
client.enq(b"First message")
client.enq(b"Second message")
# Dequeue and process messages
print(client.deq().decode()) # Output: First message
print(client.deq().decode()) # Output: Second message
Note: The decode() method is used because the deq() method returns the messages as bytes,
which need to be decoded to a string for readability.
Using a Thread Pool
You can integrate a thread pool, such as TPool, for managing concurrent client operations.
Extending StiQueue
StiQueue is designed to be flexible and extensible. You can add custom functionality to the server or client as needed. Examples of extending StiQueue are available in the examples directory.
Testing
Run the unit tests to ensure everything is working as expected.
python -m unittest discover
Run a Specific Test
Replace <test_file_name> with the desired test file:
python -m unittest tests.<test_file_name>
Key Highlights
- Lightweight and Flexible: Minimal dependencies and easy to integrate.
- Blocking Dequeue: Efficient for resource-limited systems.
- Reliable Messaging: Optional message acknowledgments to ensure no data loss.
Project details
Release history Release notifications | RSS feed
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 stiqueue-1.3.2.tar.gz.
File metadata
- Download URL: stiqueue-1.3.2.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3269020d2b50c8aea26cdef4531f2ad14ca7e394d76b1df0e72de0bceef9486b
|
|
| MD5 |
4ad33f708acba6607994417d3e71a439
|
|
| BLAKE2b-256 |
07f56a9406fcc2c50c13eb984e8fae2e18963e1c36d1cea994028195ba640b3e
|
File details
Details for the file stiqueue-1.3.2-py3-none-any.whl.
File metadata
- Download URL: stiqueue-1.3.2-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7993a22ba7323cdbd1347a3e7df250a43e18fe93978335d195234638389feee0
|
|
| MD5 |
7b2c16bea89f0a0da6d1eb69805971a4
|
|
| BLAKE2b-256 |
72265302b9f8ab81740f7e83c2d5982af28efaf228ed9b7331383e5440d7dea0
|