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

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

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

4 مستودعات

Awesome GitHub RepositoriesMemory Reference Counting

Techniques for managing memory blocks via reference counting to avoid data duplication during processing.

Distinct from Zero-Copy Memory Mappings: Focuses on reference counting and memory block lifecycle rather than simple file-to-memory mapping.

Explore 4 awesome GitHub repositories matching data & databases · Memory Reference Counting. Refine with filters or upvote what's useful.

Awesome Memory Reference Counting GitHub Repositories

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

    cloudwego/hertz

    7,279عرض على GitHub↗

    Hertz is a high-performance Go HTTP framework designed for building scalable microservices, RESTful APIs, and AI applications. It functions as a high-performance web server and a communication framework for microservices, utilizing non-blocking I/O and zero-copy memory management to handle high-concurrency traffic. The project distinguishes itself through a microservices communication toolkit that supports high-efficiency remote procedure calls via gRPC and Thrift protocols. It implements an asynchronous middleware engine based on an onion model, allowing for a pluggable request-response pipe

    Implements zero-copy memory management using reference counting to handle high-concurrency traffic with minimal memory overhead.

    Gogohttpmicroservices
    عرض على GitHub↗7,279
  • ponylang/ponycالصورة الرمزية لـ ponylang

    ponylang/ponyc

    6,133عرض على GitHub↗

    Pony is an open-source, actor-model, capabilities-secure, high performance programming language

    Manages memory through compiler-inserted reference counting driven by reference capabilities, eliminating the need for a tracing garbage collector.

    Ponyactor-modelpony-languagepony-source
    عرض على GitHub↗6,133
  • koka-lang/kokaالصورة الرمزية لـ koka-lang

    koka-lang/koka

    3,936عرض على GitHub↗

    Koka is a statically typed functional programming language featuring an algebraic effect system. It uses a strong type system to verify program correctness and track side effects at compile time. The language is distinguished by a reference counting compiler that transforms source code into native C code, eliminating the need for a tracing garbage collector. It employs perceive-based in-place updates to reduce memory overhead and utilizes tail recursion modulo cons for constant-space data structure construction. The system provides a comprehensive standard library covering numeric operations

    Utilizes a compiler that automatically inserts reference counting for memory management without a garbage collector.

    Kokaalgebraic-effectseffect-handlershandler
    عرض على GitHub↗3,936
  • onthecodepath/ios-interview-questionsالصورة الرمزية لـ onthecodepath

    onthecodepath/iOS-Interview-Questions

    987عرض على GitHub↗

    هذا المشروع عبارة عن مجموعة منسقة من الأسئلة والأجوبة التقنية المصممة لمساعدة المطورين في التحضير لمقابلات هندسة البرمجيات داخل نظام iOS البيئي. يعمل كأداة دراسة منظمة لتقييم الكفاءة في هندسة تطبيقات الهاتف المحمول، وتصميم النظام، ومفاهيم البرمجة الأساسية. يوفر المستودع مرجعاً شاملاً لمواضيع التطوير الأساسية، بما في ذلك إدارة الذاكرة، والتزامن، وأنماط التصميم، واستمرارية البيانات. من خلال تغطية هذه المجالات التأسيسية، فإنه يتيح للمستخدمين مراجعة مواضيع المقابلات الصناعية الشائعة واختبار فهمهم لكيفية تنظيم منطق التطبيق وإدارة موارد النظام بفعالية. يمتد المحتوى عبر مجموعة واسعة من المجالات التقنية، من تنفيذ قيود الواجهة وإدارة دورة حياة العرض إلى تطبيق تقنيات الاختبار المؤتمت وتصحيح الأخطاء. تم تنظيم هذه المواد لمساعدة المطورين على تحديد مجالات لمزيد من الدراسة وتحسين معرفتهم بالممارسات القياسية المستخدمة للحفاظ على تطبيقات الهاتف المحمول الموثوقة وسريعة الاستجابة.

    Covers memory management where the compiler automatically inserts reference counting operations based on static capability analysis.

    interview-practiceinterview-questionsios
    عرض على GitHub↗987
  1. Home
  2. Data & Databases
  3. Data Engineering and Infrastructure
  4. Data Persistence and Storage
  5. Data Storage Architectures
  6. Zero-Copy Memory Mappings
  7. Memory Reference Counting

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

  • Compiler-Inserted Reference CountingsMemory management where the compiler automatically inserts reference counting operations based on static capability analysis. **Distinct from Memory Reference Counting:** Distinct from Memory Reference Counting: the reference counting is inserted by the compiler based on type capabilities, not manually managed by the programmer.