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

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesGit Object Caches

Memory-capped storage mechanisms for frequently accessed Git objects and delta-base data.

Distinct from Caching: Distinct from general Caching: specifically targets Git-native object and delta-base data structures.

Explore 3 awesome GitHub repositories matching data & databases · Git Object Caches. Refine with filters or upvote what's useful.

Awesome Git Object Caches GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • gitoxidelabs/gitoxideAvatar de GitoxideLabs

    GitoxideLabs/gitoxide

    11,623Voir sur GitHub↗

    Gitoxide is a high-performance library and toolkit for interacting with version control repositories. It provides a low-level engine for manipulating Git data structures, enabling developers to build custom tools that initialize, manage, and traverse repositories with memory-efficient primitives. The project distinguishes itself through a focus on security and concurrency. It implements strict trust-based configuration loading and repository ownership validation to prevent the execution of unauthorized code. Concurrent operations are supported through a thread-safe handle pattern that allows

    Optimizes repository performance by storing frequently accessed Git objects in memory-capped buffers.

    Rustblazingly-fastbuilt-with-rustcli
    Voir sur GitHub↗11,623
  • rich-harris/degitAvatar de Rich-Harris

    Rich-Harris/degit

    7,883Voir sur GitHub↗

    degit est un outil de scaffolding de projets Git et de téléchargement de dépôts qui initialise de nouveaux projets à partir de templates Git distants. Il récupère le dernier commit d'un dépôt sous forme de snapshot propre, supprimant tout l'historique de contrôle de version et les métadonnées pour fournir un point de départ frais. L'outil prend en charge la récupération de branches, tags ou hashs de commit spécifiques pour garantir que le projet utilise une version source précise. Il peut également effectuer l'extraction de sous-répertoires, permettant le téléchargement d'un dossier spécifique à partir d'une source distante plutôt que de l'arborescence complète du projet. L'utilitaire inclut un cache de snapshot local pour accélérer les récupérations futures et prend en charge l'authentification sécurisée via HTTPS ou SSH pour accéder aux dépôts privés. Il fournit en outre des mécanismes pour l'exécution de hooks post-extraction afin d'exécuter des scripts de nettoyage après le déballage du projet.

    Provides a local storage system for repository archives to speed up project template retrieval.

    TypeScript
    Voir sur GitHub↗7,883
  • balloonwj/cppguideAvatar de balloonwj

    balloonwj/CppGuide

    6,030Voir sur GitHub↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Provides slab caches that reuse fixed-size objects to reduce allocation overhead.

    Voir sur GitHub↗6,030
  1. Home
  2. Data & Databases
  3. Data Engineering and Infrastructure
  4. Caching and Performance
  5. Caching
  6. Git Object Caches

Explorer les sous-tags

  • Repository Snapshot CachesLocal storage for full repository archives to accelerate template retrieval. **Distinct from Git Object Caches:** Caches the entire archive snapshot rather than individual Git objects or delta-bases.
  • Slab CachesFixed-size object caches that reduce allocation overhead and fragmentation. **Distinct from Git Object Caches:** Distinct from Git Object Caches: focuses on kernel-style slab caches for general object reuse, not Git-specific data.