2 repos
Architectural approaches for managing parallel tasks and asynchronous execution.
Distinguishing note: Focuses on design patterns for concurrency rather than specific threading libraries.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Concurrency Patterns. Refine with filters or upvote what's useful.
The CppCoreGuidelines is a comprehensive software engineering standard that provides a curated framework of coding conventions and design principles for C++. It serves as an authoritative guide for writing safe, efficient, and maintainable code by establishing high-level architectural patterns and organizational principles for large-scale projects. The guidelines emphasize the use of a strong, static type system to ensure memory safety and enforce consistent resource management patterns. The project distinguishes itself by promoting the zero-overhead abstraction principle, ensuring that high-
Provides patterns for executing multiple tasks simultaneously to improve system responsiveness and throughput.
Agno is an agent operating system designed to manage the lifecycle, tool execution, and persistent state of autonomous agents across distributed infrastructure. It provides a unified runtime environment that wraps diverse agent frameworks into a consistent, interoperable protocol, allowing developers to build and deploy complex multi-agent systems that coordinate tasks and delegate sub-processes. The platform distinguishes itself through a robust governance and orchestration layer that includes human-in-the-loop approval gates, role-based access control, and a centralized API gateway. It feat
Prevents race conditions during asynchronous execution by creating independent copies of inputs and contexts for each concurrent process.