awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • ray-project/rayray-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/hazelcasthazelcast 的头像

    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/fluidframeworkmicrosoft 的头像

    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/capnwebcloudflare 的头像

    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.