9 مستودعات
Architectural patterns for designing multi-threaded systems that ensure data consistency.
Distinguishing note: Focuses on architectural patterns for concurrency rather than low-level threading APIs.
Explore 9 awesome GitHub repositories matching software engineering & architecture · Concurrent Programming 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 architectural guidance for building thread-safe and parallel systems.
This project is a collection of guidelines and best practices for the Go programming language, providing a comprehensive style guide and set of programming standards. It establishes a framework for writing maintainable and performant source code through standardized naming, structuring, and organizational conventions. The guide focuses on specific patterns for concurrency, error handling, and performance optimization. It details methods for managing goroutine lifecycles to prevent race conditions, designing structured error wrapping and routing to maintain observability, and implementing memo
Defines architectural patterns for concurrent programming to ensure data consistency and safety.
This project is a comprehensive library of reference implementations for fundamental data structures and algorithms, designed to support technical interview preparation and software engineering assessments. It provides a structured collection of computational techniques for solving complex problems involving arrays, strings, graphs, trees, and mathematical analysis. The library distinguishes itself by offering specialized implementations for advanced topics, including concurrent programming patterns and geometric algorithms. It features thread-safe primitives for managing shared state and tas
Features thread-safe primitives and architectural patterns for managing shared state and task scheduling.
This project is a comprehensive functional programming curriculum and learning resource for Haskell. It provides sequenced educational paths and technical reference guides designed to take developers from beginner to advanced levels of proficiency. The project distinguishes itself through a deep focus on theoretical and technical foundations, offering detailed studies on type theory, category theory, and runtime internals. It includes a dedicated performance handbook for optimizing execution speed and memory management, as well as an ecosystem guide for managing development tools and editor c
Teaches concurrent programming patterns for implementing multi-threaded applications and reactive systems.
This is a collection of academic programming projects that accompany an operating systems textbook, designed to teach core OS concepts through hands-on implementation. The projects span the major subsystems of an operating system, including process scheduling, memory management, file systems, and concurrency, with students building components from scratch in a simulated environment. The projects are structured to cover the full range of OS internals, from low-level kernel development to user-space system programming. Students implement lottery-based CPU schedulers, dynamic heap memory allocat
Provides multi-threaded programming exercises that teach synchronization and parallel workload handling.
هذا المشروع عبارة عن دليل شامل وكتاب تقني يركز على التزامن (concurrency) في C++. يعمل كمورد تعليمي للمطورين لتعلم تعدد الخيوط (multi-threading) وتنفيذ الكود الآمن للخيوط. تغطي المادة نموذج ذاكرة C++، والعمليات الذرية (atomic operations)، وأنماط المزامنة. يجمع بين الشروحات النظرية وأمثلة الكود العملية لتوضيح كيفية منع سباق البيانات (data races) في التطبيقات متعددة الخيوط. يستخدم النهج التعليمي التعلم القائم على السيناريوهات وتحليل مكتبة C++ القياسية لتوضيح أنماط التنفيذ المتزامن وقيود ترتيب الذاكرة.
Includes lessons and exercises for implementing thread-safe code and synchronization.
This project is a concurrent programming knowledge base and tutorial series focused on Java synchronization, locks, and performance scalability. It serves as an implementation guide for mastering multi-threading and the management of shared resources in Java. The content is organized as a structured hierarchy of technical articles and guided tutorials. It pairs common multi-threading pitfalls with specific implementation patterns and fixes to assist with concurrency troubleshooting and the prevention of race conditions. The knowledge base utilizes a relational technical framework and modular
Provides architectural patterns for designing multi-threaded systems to improve performance and scalability.
This project is a technical curriculum and set of educational resources focused on parallel programming, high-performance computing, and systems programming. It provides a structured course covering the implementation of parallel algorithms and multithreading techniques for processing large datasets. The project includes a systems programming guide for modern language features, a framework for lock-free concurrency patterns, and a manual for optimizing CPU and GPU performance through assembly analysis and cache management. The material covers hardware performance tuning, the implementation o
Provides architectural patterns for designing multi-threaded systems that ensure data consistency.
يعمل هذا المستودع كمورد شامل للبرمجة التنافسية والتحضير للمقابلات التقنية. يوفر مجموعة منظمة من تنفيذات الكود المصدري لهياكل البيانات الأساسية ومشاكل الخوارزميات الكلاسيكية، المصممة لمساعدة المطورين على إتقان مفاهيم علوم الحاسوب الأساسية واستراتيجيات البرمجة الفعالة. بعيداً عن حل المشكلات القياسي، يتميز المشروع بدمج أنماط تصميم البرمجيات في تنفيذاته الخوارزمية. يوضح كيفية تطبيق الأنماط الهيكلية والسلوكية—مثل المزخرفات، والمراقبين، والسينغلتون—للحفاظ على كود نظيف وقابل للتوسيع. بالإضافة إلى ذلك، يغطي المستودع أنماط البرمجة المتزامنة، ويقدم أمثلة على إدارة تجمع الخيوط وتقنيات المزامنة للتعامل مع المهام كثيفة الموارد. تتضمن المجموعة مجموعة واسعة من المواد التعليمية، من تحليل التعقيد وقوالب حل المشكلات إلى تنفيذات محددة لاجتياز الرسوم البيانية، والبرمجة الديناميكية، واستعلامات النطاق. تم تنظيم هذه الموارد للمساعدة في كل من تعلم التقنيات الأساسية والممارسة للتقييمات التقنية المهنية.
Implements multi-threaded logic and synchronization techniques to handle complex tasks and improve performance in resource-intensive applications.