awesome-repositories.com
Blog
MCP
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektMCP-ServerÜber unsRanking-MethodikPresse
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 Repos

Awesome GitHub RepositoriesZero-Allocation Architectures

Software designs that eliminate temporary object creation to prevent garbage collection overhead.

Distinct from Incremental Garbage Collection: Neither GC tuning nor incremental GC describes the proactive architecture of avoiding allocations entirely.

Explore 7 awesome GitHub repositories matching software engineering & architecture · Zero-Allocation Architectures. Refine with filters or upvote what's useful.

Awesome Zero-Allocation Architectures GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • gunnarmorling/1brcAvatar von gunnarmorling

    gunnarmorling/1brc

    8,062Auf GitHub ansehen↗

    The 1BRC (One Billion Row Challenge) is a Java performance benchmarking exercise that processes one billion temperature records from a text file to compute the minimum, mean, and maximum temperature per weather station. At its core, it is a large-scale data aggregation challenge designed to test how efficiently a Java program can parse and aggregate structured data from a plain text file, serving as both a programming exercise and a benchmark for Java performance optimization. The project distinguishes itself through a collection of performance-oriented architectural patterns for high-through

    Pre-allocates all working data structures upfront and avoids object creation during the hot loop to eliminate GC pauses.

    Java1brcchallenges
    Auf GitHub ansehen↗8,062
  • mikaelemmmm/go-zero-looklookAvatar von Mikaelemmmm

    Mikaelemmmm/go-zero-looklook

    5,158Auf GitHub ansehen↗

    Dieses Projekt ist eine Referenzimplementierung und ein architektonischer Bauplan für den Aufbau verteilter Systeme unter Verwendung des go-zero-Frameworks. Es bietet ein vollständiges Microservices-Boilerplate und ein standardisiertes Projektlayout, um API- und RPC-Services mit konsistenten Ordnerstrukturen zu bootstrappen. Die Implementierung zeichnet sich durch einen umfassenden Leitfaden und eine Codebasis für Service-Discovery, Rate-Limiting und Circuit-Breaking aus. Sie demonstriert eine Observability-Stack-Integration, die verteiltes Tracing, Metrikerfassung und zentralisiertes Logging über mehrere Microservices hinweg koordiniert. Das System deckt ein breites Spektrum verteilter Funktionen ab, einschließlich asynchronem Messaging via Publish-Subscribe-Modell, verteiltem Transaktionsmanagement für Datenkonsistenz und einem Gateway-Aggregation-Pattern zur Trennung externer Requests von interner Kommunikation. Es enthält zudem automatisierte Codegenerierung aus Definitionen und Continuous-Delivery-Pipelines für Container-Deployments.

    Features a zero-allocation router that minimizes memory overhead for high-performance request processing.

    Goasynqdtmelasticsearch
    Auf GitHub ansehen↗5,158
  • openhft/chronicle-queueAvatar von OpenHFT

    OpenHFT/Chronicle-Queue

    3,692Auf GitHub ansehen↗

    Chronicle Queue is a high-performance data handling system featuring off-heap message queues, memory-mapped file stores, and replicated message stores. It provides a binary compatible memory layout that enables different programming languages to share data without serialization overhead. The system utilizes a replicated message store to synchronize data across multiple nodes, ensuring high availability and instant failover. Its memory-mapped architecture supports deterministic replay from disk and low-latency data recording. The project implements off-heap memory management and zero-allocati

    Employs a zero-allocation architecture and off-heap memory to completely eliminate garbage collection pauses.

    Javachroniclejavalow-latency
    Auf GitHub ansehen↗3,692
  • rust-embedded/embedded-halAvatar von rust-embedded

    rust-embedded/embedded-hal

    2,600Auf GitHub ansehen↗

    Embedded-hal is a hardware abstraction layer for embedded microcontrollers that defines common traits allowing peripheral drivers to remain entirely independent of specific hardware platforms. The library provides platform-agnostic interfaces that decouple driver logic from microcontroller architectures, utilizing zero-cost trait abstractions that compile down to direct hardware register manipulations without runtime overhead or memory allocation. The project features asynchronous execution support and synchronous-to-asynchronous adaptation, enabling non-blocking peripheral operations and coo

    Provides stream and I/O traits that operate entirely without standard libraries or heap allocators.

    Rust
    Auf GitHub ansehen↗2,600
  • rust-embedded/heaplessAvatar von rust-embedded

    rust-embedded/heapless

    1,977Auf GitHub ansehen↗

    Heapless is an embedded Rust data structure library that provides statically allocated, fixed-capacity collections for memory-constrained systems. It implements a zero-allocation runtime model where all collection elements are stored inline within their own value structure, completely removing the need for operating system interaction, global allocators, or runtime heap allocation. Capacity is specified at compile time through generic type parameters, ensuring every collection has a fixed upper bound known before execution. The library implements core language traits to provide standard coll

    Operates without operating system interaction or global allocators, making data structures safe for bare-metal microcontrollers.

    Rustdata-structuresno-stdrust
    Auf GitHub ansehen↗1,977
  • unicode-org/icu4xAvatar von unicode-org

    unicode-org/icu4x

    1,819Auf GitHub ansehen↗

    ICU4X is a modular internationalization library written in Rust, designed as a cross-platform toolkit for formatting text, dates, numbers, and identifiers according to specific regional and cultural rules. It decomposes internationalization features into independent micro-libraries and embeds optimized binary structures directly into application binaries during the build phase via compile-time code generation, or loads externalized cultural datasets dynamically on demand. The library utilizes zero-allocation data structuring to access internationalization properties directly from serialized

    Accesses internationalization properties directly from serialized buffers without parsing or allocating dynamic heap memory at runtime.

    Rustcldricuinternationalization
    Auf GitHub ansehen↗1,819
  • gobwas/globAvatar von gobwas

    gobwas/glob

    1,020Auf GitHub ansehen↗

    Glob is a pattern matching library for Go that compiles wildcard strings and file paths into optimized matchers for high-throughput string validation and filtering. It evaluates text and file paths against character sets, ranges, and alternatives to determine if candidate inputs fit specific criteria. The library parses raw glob strings into structured syntax nodes before translating them into bytecode instruction sequences upfront. This compilation process enables finite state machine evaluations and zero-allocation path matching during runtime execution, preventing garbage collection press

    Executes string validations without allocating heap memory to prevent garbage collection pressure during high-frequency checks.

    Goglobgolangpattern
    Auf GitHub ansehen↗1,020
  1. Home
  2. Software Engineering & Architecture
  3. Zero-Allocation Architectures

Unter-Tags erkunden

  • Path MatchersZero-allocation matching techniques tailored for file paths and strings. **Distinct from Zero-Allocation Architectures:** Distinct from general zero-allocation architectures: specifically focuses on garbage-free path and string validation checks.
  • Routing ImplementationsSpecific implementations of zero-allocation routing for HTTP requests. **Distinct from Zero-Allocation Architectures:** Specializes zero-allocation architecture specifically for API routing rather than general data processing
  • Zero-Allocation Runtime ModelsRuntime architectures operating entirely without operating system interaction or global allocators. **Distinct from Zero-Allocation Architectures:** Distinct from Zero-Allocation Architectures: focuses specifically on runtime models for bare-metal microcontrollers devoid of OS or global allocators.