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

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

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesObject Reference Mapping

Tracing and mapping the connectivity between a root element and all referenced objects in memory.

Distinct from Memory Reference Counting: Existing candidates focus on binary symbol addresses, project-to-memory IDs, or reference counting, not object graph mapping.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Object Reference Mapping. Refine with filters or upvote what's useful.

Awesome Object Reference Mapping GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • sebastianbergmann/object-enumeratorsebastianbergmann 的头像

    sebastianbergmann/object-enumerator

    6,537在 GitHub 上查看↗

    Object-enumerator is a data structure crawler and enumeration library designed to discover and list all objects stored within deep or circular data references. It functions as a traversal tool that recursively walks through nested arrays and object graphs to identify every individual referenced object. The library flattens complex hierarchical data structures into a linear collection of unique objects. This process enables data structure analysis and memory reference mapping by tracing all objects connected to a root element to understand the overall composition of a data set.

    Maps the composition of a data set by tracing all objects connected to a root element.

    PHP
    在 GitHub 上查看↗6,537
  • mapstermapper/mapsterMapsterMapper 的头像

    MapsterMapper/Mapster

    5,127在 GitHub 上查看↗

    Mapster 是一个 .NET 对象到对象映射器和高性能映射引擎,用于在不同对象模型之间转换数据。它作为类型安全的数据传输工具和 LINQ 查询投影工具,用于在内部逻辑和外部数据结构之间移动数据。 该引擎利用编译后的映射表达式和机器码来减少对象转换过程中的开销。它特别允许将可查询的数据源直接投影到目标类型中,以优化数据库检索。 该工具集涵盖了数据传输对象(DTO)生成、不可变数据转换和查询结果投影。它包括映射不可变集合、保留对象引用以及将运行时参数注入转换过程的功能。

    Tracks and reuses existing object references during mapping to prevent duplicate objects in the target graph.

    C#
    在 GitHub 上查看↗5,127
  • 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

    Uses reference counting to track remote object ownership and automate memory reclamation when references are released.

    TypeScript
    在 GitHub 上查看↗3,846
  1. Home
  2. Software Engineering & Architecture
  3. Object Reference Mapping

探索子标签

  • Reference Counting MechanismsTechniques for tracking object ownership via reference counters to manage memory lifecycles. **Distinct from Object Reference Mapping:** Distinct from Object Reference Mapping: focuses on the increment/decrement counting mechanism rather than mapping the connectivity graph.