sergeant icon indicating copy to clipboard operation
sergeant copied to clipboard

Fast, Safe & Simple Asynchronous Task Queues Written In Pure Python

Results 15 sergeant issues
Sort by recently updated
recently updated
newest added

Fixed import in programmatical supervisor code example

## Description Implement Poerty Extras ## Types of changes Check all that apply: - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change...

Implement a test framework for sergeant. Right now, writing tests is a hard task and we should simplify it as much as possible.

Whenever a worker is popping a task from the queue, if it crushes before it pushing the task back to the queue - the task will be gone. Maybe we...

Sometimes when a task is in the queue for a long time - is being deprecated. Maybe we can add the option to set TTL for a key, so the...

It would be great to have the option to have a flag that will define whether to use regular queue or set queue, which will allow to avoid duplication @wavenator

When a specific task reaches max retries, the task is forever gone. I want to save failed tasks and their state in order to re-execute them when I fix the...

Following our discussion in the [PR](https://github.com/Intsights/sergeant/pull/36), 1. Can there be an implementation that serializes tasks identically (without time parameter)? 2. lists outperform zset that's true, but we use zset for...