awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesPluggable Queue Orderings

Replaces the default FIFO queue with custom ordering logic for priority or deadline control.

Distinct from Task Queues: Distinct from generic Task Queues: focuses on replaceable queue ordering, not just task grouping.

Explore 3 awesome GitHub repositories matching devops & infrastructure · Pluggable Queue Orderings. Refine with filters or upvote what's useful.

Awesome Pluggable Queue Orderings GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • piscinajs/piscinaAvatar von piscinajs

    piscinajs/piscina

    5,053Auf GitHub ansehen↗

    Piscina is a Node.js worker thread pool that runs CPU-intensive JavaScript functions across multiple threads for parallel execution. It manages a dynamic pool of worker threads with configurable size, handling task submission, cancellation, and lifecycle management through a promise-based interface. The pool supports AbortController-based task cancellation, enabling clean termination of submitted or running tasks without disrupting other work. It enforces per-worker memory limits through V8 resource caps and applies backpressure with a configurable maximum queue size that emits a drain event

    Offers a pluggable task queue with customizable ordering strategies.

    TypeScriptmultithreadingnearform-researchnodejs
    Auf GitHub ansehen↗5,053
  • yigit/android-priority-jobqueueAvatar von yigit

    yigit/android-priority-jobqueue

    3,385Auf GitHub ansehen↗

    Provides a pluggable queue factory to swap built-in memory or SQLite queues with custom ordering.

    Java
    Auf GitHub ansehen↗3,385
  • timgit/pg-bossAvatar von timgit

    timgit/pg-boss

    3,218Auf GitHub ansehen↗

    pg-boss is a background task scheduler and distributed task queue that uses PostgreSQL as a reliable message broker for asynchronous job processing. It provides a system for distributing work across multiple application instances, ensuring exactly-once delivery through atomic database transactions. The project includes a cron job scheduler for automating recurring tasks and a PostgreSQL pub-sub system for fan-out event distribution. It also features a web-based management dashboard for monitoring queue statistics and controlling job lifecycles, including manual retries and cancellations. Cap

    Provides factory functions to customize the core behavior and configuration of job queues.

    TypeScriptjobnodenodejs
    Auf GitHub ansehen↗3,218
  1. Home
  2. DevOps & Infrastructure
  3. Task Queues
  4. Pluggable Queue Orderings

Unter-Tags erkunden

  • Pluggable Queue FactoriesSwapping the built-in memory or SQLite queue with a custom queue factory for alternative storage or ordering. **Distinct from Pluggable Queue Orderings:** Distinct from Pluggable Queue Orderings: focuses on replacing the entire queue implementation (factory pattern), not just the ordering strategy.