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

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

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

4 مستودعات

Awesome GitHub RepositoriesDistributed Object Handles

Mechanisms for passing references to remote stateful services across distributed task boundaries.

Distinguishing note: Focuses on the serialization and transmission of actor references rather than general data object passing.

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

Awesome Distributed Object Handles GitHub Repositories

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

    ray-project/ray

    42,895عرض على GitHub↗

    Ray is a distributed computing framework designed to scale Python and Java applications across clusters by abstracting task scheduling and resource management. It functions as a resource-aware execution engine that manages task dependencies, placement, and fault tolerance across networked compute nodes. At its core, the system provides a stateful actor model, allowing developers to define classes that run in dedicated processes to maintain and mutate internal state across remote method calls. The framework distinguishes itself through a robust cross-language interoperability layer, enabling f

    Ray allows passing actor handles as arguments to remote tasks to enable distributed components to interact with the same stateful service.

    Pythondata-sciencedeep-learningdeployment
    عرض على GitHub↗42,895
  • hazelcast/hazelcastالصورة الرمزية لـ hazelcast

    hazelcast/hazelcast

    6,570عرض على GitHub↗

    Hazelcast is a distributed data platform that combines an in-memory data grid with a stream processing engine to support real-time analytics and event-driven applications. It functions as a partitioned, distributed key-value store that replicates data across cluster nodes to provide low-latency access and high availability. The platform also serves as a distributed SQL query engine, allowing users to execute standard SQL statements against both in-memory datasets and external data sources. What distinguishes Hazelcast is its use of a distributed consensus subsystem to maintain strongly consis

    Enables efficient remote interaction with shared data structures by transmitting object identifiers across the cluster.

    Javabig-datacachingdata-in-motion
    عرض على GitHub↗6,570
  • microsoft/fluidframeworkالصورة الرمزية لـ microsoft

    microsoft/FluidFramework

    4,930عرض على GitHub↗

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

    Provides an abstraction layer over distributed data structures so developers interact with them like local JavaScript objects.

    TypeScriptcollaborationcrdtdatastructure
    عرض على GitHub↗4,930
  • cloudflare/capnwebالصورة الرمزية لـ cloudflare

    cloudflare/capnweb

    3,846عرض على GitHub↗

    Capnweb is a distributed object communication library and Cap'n Proto RPC framework. It enables type-safe remote procedure calls between clients and servers using shared schemas and generated stubs to invoke methods on remote objects as if they were local. The project utilizes an object-capability security model to govern access to remote resources through unforgeable tokens. It provides a bidirectional network layer that multiplexes asynchronous calls and data streams over persistent WebSocket connections and includes a remote resource lifecycle manager that uses reference counting to automa

    Implements shared object abstractions that allow developers to interact with distributed data structures as if they were local.

    TypeScript
    عرض على GitHub↗3,846
  1. Home
  2. Software Engineering & Architecture
  3. Distributed Object Handles

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

  • Distributed Object Identifiers1 وسم فرعيTransmission of unique identifiers for remote retrieval and interaction with shared data structures. **Distinct from Distributed Object Handles:** Distinct from Distributed Object Handles: focuses on the data-centric identification of shared structures, not actor-based service handles.