awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 रिपॉजिटरी

Awesome GitHub RepositoriesConcurrency Managers

Utilities for coordinating asynchronous operations, task lifecycles, and state tracking.

Distinguishing note: No existing candidates provided; this category focuses on the architectural management of task handles and cancellation.

Explore 4 awesome GitHub repositories matching software engineering & architecture · Concurrency Managers. Refine with filters or upvote what's useful.

Awesome Concurrency Managers GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • alamofire/alamofireAlamofire का अवतार

    Alamofire/Alamofire

    42,385GitHub पर देखें↗

    Alamofire is an HTTP networking library that provides a foundation for managing network requests and responses through a chainable, type-safe interface. It serves as an asynchronous request manager, coordinating concurrent network operations and data streams while maintaining application responsiveness. The library distinguishes itself through a protocol-oriented request adaptation system, which utilizes interceptors to modify or authenticate requests before dispatch. It employs a middleware-driven pipeline to process traffic, handling encoding, authentication, and error recovery in a modular

    Coordinates asynchronous network operations by mapping request lifecycles to native task handles for cancellation and state tracking.

    Swiftalamofirecarthagecertificate-pinning
    GitHub पर देखें↗42,385
  • dotnet/efcoredotnet का अवतार

    dotnet/efcore

    14,587GitHub पर देखें↗

    Entity Framework Core is an object-relational mapper that enables developers to interact with database systems using strongly-typed code. It serves as a comprehensive data access framework, providing a unified interface for mapping application objects to relational and non-relational database schemas while managing the lifecycle of data operations through a central context. The project distinguishes itself through a provider-based architecture that decouples core data access logic from specific database engines, allowing for consistent interaction across diverse storage systems. It features a

    Entity Framework configures specific properties to act as version markers, either by leveraging native database-generated values or by manually tracking state within the application code.

    C#aspnet-productc-sharpdatabase
    GitHub पर देखें↗14,587
  • activiti/activitiActiviti का अवतार

    Activiti/Activiti

    10,518GitHub पर देखें↗

    Activiti is a workflow engine designed to model, execute, and manage business processes using the BPMN 2.0 standard. It functions as a Java-based framework that embeds process orchestration directly into enterprise applications and microservices to coordinate sequences of tasks and human-centric interactions. The platform utilizes a persistent state machine to maintain the status of long-running workflows in a relational database, ensuring continuity across system restarts. It manages high-volume environments through optimistic concurrency control, which tracks versioning tokens to prevent da

    Uses versioning tokens to manage concurrent process updates and prevent data corruption in high-volume environments.

    Javaactivitibpmbpmn
    GitHub पर देखें↗10,518
  • xxjwxc/uber_go_guide_cnxxjwxc का अवतार

    xxjwxc/uber_go_guide_cn

    8,172GitHub पर देखें↗

    This project is a translated Go language style guide and programming standard. It provides a collection of coding standards and best practices designed to ensure that Go code remains maintainable, readable, and efficient. The guide focuses on idiomatic patterns for error handling, interface compliance, and memory optimization. It establishes standards for package naming and the use of functional options to maintain backward compatibility in constructors. It covers a broad range of capabilities, including concurrency management for coordinating process lifecycles and preventing resource leaks

    Provides guidelines for coordinating the lifecycles of concurrent operations and managing task cancellation.

    chinesecngo
    GitHub पर देखें↗8,172
  1. Home
  2. Software Engineering & Architecture
  3. Concurrency Managers

सब-टैग एक्सप्लोर करें

  • Concurrency TokensMechanisms for tracking entity versioning to detect and resolve data modification conflicts. **Distinct from Concurrency Managers:** Distinct from general concurrency managers: focuses on data-level versioning tokens rather than task-level execution coordination.