1 रिपॉजिटरी
Utilizes database-level triggers to notify consumers of new record insertions in real-time.
Distinct from Messaging Notifications: Distinct from general messaging notifications as it leverages internal Postgres NOTIFY events for polling-free consumption.
Explore 1 awesome GitHub repository matching data & databases · Database Insert Notifications. Refine with filters or upvote what's useful.
PGMQ is a lightweight message queuing system implemented as a PostgreSQL extension to manage asynchronous tasks. It functions as a database-backed message broker that leverages PostgreSQL for persistent storage, atomic operations, and notification-driven delivery. The system provides an SQS-compatible queue model featuring visibility timeouts and delayed delivery. It supports strict first-in-first-out ordering through group keys and batch retrieval to ensure sequential processing of related tasks. The project covers a full message lifecycle including production, consumption via atomic pop op
Employs Postgres NOTIFY events to alert consumers of new messages immediately without requiring constant polling.