awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 مستودعات

Awesome GitHub RepositoriesDurable Execution Pausing

Suspending a durable task for a specified duration or until an event occurs without blocking the worker.

Distinct from Durable Task Conversion: Distinct from Durable Task Conversion: focuses on the pausing mechanism itself rather than the conversion of tasks to be durable.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Durable Execution Pausing. Refine with filters or upvote what's useful.

Awesome Durable Execution Pausing GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • wiselibs/better-sqlite3الصورة الرمزية لـ WiseLibs

    WiseLibs/better-sqlite3

    7,311عرض على GitHub↗

    better-sqlite3 is a high-performance SQLite3 client for Node.js that executes queries synchronously, returning results directly without callbacks or promises. It compiles as a native addon using N-API, binding directly to the SQLite3 C library for immediate query execution and zero-copy result serialization into native JavaScript objects. The library is optimized for Write-Ahead Logging (WAL) mode, enabling faster concurrent reads and writes in web applications. It provides durability level tuning through the synchronous pragma, allowing adjustments between FULL, NORMAL, and OFF modes to bala

    Adjusts synchronous pragma settings to balance write performance against crash safety in WAL mode.

    JavaScriptdatabasesqlsqlite
    عرض على GitHub↗7,311
  • hatchet-dev/hatchetالصورة الرمزية لـ hatchet-dev

    hatchet-dev/hatchet

    6,622عرض على GitHub↗

    Hatchet is an open-source durable workflow engine and task orchestration platform. It provides a framework for building and executing fault-tolerant, multi-step pipelines as directed acyclic graphs (DAGs), with automatic retries, scheduling, and real-time observability. The system is built around durable task checkpointing, which persists execution state after each step so work can resume from the last checkpoint after a worker crash or restart, and it supports event-driven task resumption that pauses a task until a matching external event arrives. The platform distinguishes itself through it

    Suspends durable tasks for a duration or until an event occurs without blocking the worker.

    Goconcurrencydagdistributed
    عرض على GitHub↗6,622
  1. Home
  2. Software Engineering & Architecture
  3. Durable Workflow Engines
  4. Durable Task Conversion
  5. Durable Execution Pausing

استكشف الوسوم الفرعية

  • Durability Level AdjustmentsConfigurable settings that trade write performance for crash safety by adjusting synchronous pragma levels. **Distinct from Durable Execution Pausing:** Distinct from Durable Execution Pausing: focuses on adjusting the durability guarantee level (FULL/NORMAL/OFF) rather than pausing execution.