<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>bunqueue blog</title>
    <link>https://bunqueue.dev/blog/</link>
    <atom:link href="https://bunqueue.dev/rss.xml" rel="self" type="application/rss+xml"/>
    <description>Guides, benchmarks and architecture deep dives on bunqueue, the zero-infrastructure job queue for Bun.</description>
    <language>en</language>
    <item>
      <title>Workflow Engine: Orchestration Without Temporal</title>
      <link>https://bunqueue.dev/blog/workflow-engine/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/workflow-engine/</guid>
      <pubDate>Fri, 10 Apr 2026 00:00:00 GMT</pubDate>
      <description>bunqueue 2.7 ships a built-in workflow engine: saga compensation, branching and human-in-the-loop signals, all persisted to SQLite with no extra services.</description>
    </item>
    <item>
      <title>Job Queue Rate Limiting &amp; Concurrency Control in Bun</title>
      <link>https://bunqueue.dev/blog/rate-limiting-concurrency/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/rate-limiting-concurrency/</guid>
      <pubDate>Fri, 13 Feb 2026 00:00:00 GMT</pubDate>
      <description>Protect downstream services with bunqueue's rate limiting and concurrency controls. Per-queue limits, global concurrency, and backpressure.</description>
    </item>
    <item>
      <title>FlowProducer: Job Pipelines and Dependency Trees</title>
      <link>https://bunqueue.dev/blog/job-pipelines-flows/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/job-pipelines-flows/</guid>
      <pubDate>Thu, 12 Feb 2026 00:00:00 GMT</pubDate>
      <description>Create job pipelines and dependency trees with bunqueue's FlowProducer. Parent-child workflows, fan-out patterns, and chain processing.</description>
    </item>
    <item>
      <title>bunqueue S3 Backup and Disaster Recovery for SQLite Job Queues</title>
      <link>https://bunqueue.dev/blog/s3-backup-recovery/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/s3-backup-recovery/</guid>
      <pubDate>Wed, 11 Feb 2026 00:00:00 GMT</pubDate>
      <description>Automate S3 backups for bunqueue's SQLite database. Backup scheduling, retention policies, and step-by-step disaster recovery guide.</description>
    </item>
    <item>
      <title>bunqueue with Hono and Elysia: Bun Framework Integration Guide</title>
      <link>https://bunqueue.dev/blog/framework-integrations/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/framework-integrations/</guid>
      <pubDate>Tue, 10 Feb 2026 00:00:00 GMT</pubDate>
      <description>Integrate bunqueue with Hono and Elysia frameworks. Queue jobs from HTTP handlers, middleware patterns, and graceful shutdown in Bun apps.</description>
    </item>
    <item>
      <title>Deploy bunqueue to Production: Docker, systemd, and PM2 Guide</title>
      <link>https://bunqueue.dev/blog/production-deployment/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/production-deployment/</guid>
      <pubDate>Mon, 09 Feb 2026 00:00:00 GMT</pubDate>
      <description>Production deployment guide for bunqueue with Docker, systemd, and PM2. Health checks, resource limits, backups, and monitoring for Bun.</description>
    </item>
    <item>
      <title>Auto-Batching: Up to 10x Throughput, Zero Code Changes</title>
      <link>https://bunqueue.dev/blog/auto-batching/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/auto-batching/</guid>
      <pubDate>Sun, 08 Feb 2026 00:00:00 GMT</pubDate>
      <description>How bunqueue transparently batches concurrent add() calls into bulk operations. Get up to 10x throughput in Bun with no code changes required.</description>
    </item>
    <item>
      <title>Cron Scheduling: Recurring Jobs for Bun Apps</title>
      <link>https://bunqueue.dev/blog/cron-scheduling/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/cron-scheduling/</guid>
      <pubDate>Sat, 07 Feb 2026 00:00:00 GMT</pubDate>
      <description>Schedule recurring jobs with bunqueue's built-in cron scheduler. Cron expressions, repeat intervals, timezone support, and execution limits.</description>
    </item>
    <item>
      <title>Dead Letter Queues: Catch, Inspect, Retry</title>
      <link>https://bunqueue.dev/blog/dead-letter-queues/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/dead-letter-queues/</guid>
      <pubDate>Fri, 06 Feb 2026 00:00:00 GMT</pubDate>
      <description>Handle failed jobs gracefully with bunqueue's DLQ. Auto-retry, filtering by failure reason, and dead letter queue management for Bun.</description>
    </item>
    <item>
      <title>Reliable Bun Workers: Stall Detection and Heartbeats in bunqueue</title>
      <link>https://bunqueue.dev/blog/reliable-workers/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/reliable-workers/</guid>
      <pubDate>Thu, 05 Feb 2026 00:00:00 GMT</pubDate>
      <description>Build fault-tolerant job workers with bunqueue's stall detection, heartbeat protocol, and lock-based ownership. Prevent lost and duplicate jobs.</description>
    </item>
    <item>
      <title>bunqueue vs BullMQ: Reproducible Benchmarks</title>
      <link>https://bunqueue.dev/blog/benchmarks-vs-bullmq/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/benchmarks-vs-bullmq/</guid>
      <pubDate>Wed, 04 Feb 2026 00:00:00 GMT</pubDate>
      <description>Reproducible benchmarks comparing bunqueue and BullMQ. Bulk push is 3.5x faster with 1.8x lower p99 latency, and single push is parity.</description>
    </item>
    <item>
      <title>Sharding Deep Dive: Multi-Core Job Distribution</title>
      <link>https://bunqueue.dev/blog/sharding-deep-dive/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/sharding-deep-dive/</guid>
      <pubDate>Tue, 03 Feb 2026 00:00:00 GMT</pubDate>
      <description>How bunqueue shards jobs across CPU cores using FNV-1a hashing for maximum throughput. Deep dive into power-of-2 shard architecture.</description>
    </item>
    <item>
      <title>bunqueue Quick Start: Build a Bun Job Queue in 5 Minutes</title>
      <link>https://bunqueue.dev/blog/getting-started-five-minutes/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/getting-started-five-minutes/</guid>
      <pubDate>Mon, 02 Feb 2026 00:00:00 GMT</pubDate>
      <description>Set up bunqueue, create queues, add jobs, and process them with workers in embedded or TCP mode. Step-by-step Bun job queue tutorial.</description>
    </item>
    <item>
      <title>Why bunqueue Replaces Redis with SQLite for Bun Job Queues</title>
      <link>https://bunqueue.dev/blog/why-bunqueue/</link>
      <guid isPermaLink="true">https://bunqueue.dev/blog/why-bunqueue/</guid>
      <pubDate>Sun, 01 Feb 2026 00:00:00 GMT</pubDate>
      <description>Discover why bunqueue uses SQLite instead of Redis for job queues on Bun. Simpler deployments, zero dependencies, and 100k jobs/sec throughput.</description>
    </item>
  </channel>
</rss>