Rand Stats

MongoDB::Queue

zef:Zer0-Tolerance

Changelog

All notable changes to MongoDB::Queue are documented here.

The format follows Keep a Changelog and the project uses Semantic Versioning.


[0.1.1] — 2026-03-22

Changed


[0.1.0] — 2026-03-21

Added

Core queue operations

Job scheduling

Maintenance

Metrics

Event loop

Factory constructor

Job document schema

FieldTypeNotes
_idStr32-char random hex
payloadHasharbitrary application data
statusStrpending | processing | done | failed
priorityInthigher = dequeued first (default 0)
available_atIntepoch seconds; gates delayed delivery
created_atIntepoch seconds
locked_atIntepoch seconds when claimed (Any if pending)
locked_byStrworker identifier (Any if pending)
attemptsIntincremented on every dequeue
max_attemptsIntpermanent failure threshold
done_atIntepoch seconds when acked/failed (Any if not)

Implementation notes

Test suite