awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

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

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • piscinajs/piscinaAvatar piscinajs

    piscinajs/piscina

    5,053Vezi pe GitHub↗

    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
    Vezi pe GitHub↗5,053
  • yigit/android-priority-jobqueueAvatar yigit

    yigit/android-priority-jobqueue

    3,385Vezi pe GitHub↗

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

    Java
    Vezi pe GitHub↗3,385
  • timgit/pg-bossAvatar timgit

    timgit/pg-boss

    3,218Vezi pe GitHub↗

    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
    Vezi pe GitHub↗3,218
  1. Home
  2. DevOps & Infrastructure
  3. Task Queues
  4. Pluggable Queue Orderings

Explorează sub-etichetele

  • 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.