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

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

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

4 مستودعات

Awesome GitHub RepositoriesSerializers

Tools for marshaling objects into binary formats for efficient storage in cache backends.

Distinct from Data Caching: Focuses on cache-specific serialization, distinct from general data serialization.

Explore 4 awesome GitHub repositories matching data & databases · Serializers. Refine with filters or upvote what's useful.

Awesome Serializers GitHub Repositories

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

    quarkusio/quarkus

    15,479عرض على GitHub↗

    Quarkus is a Kubernetes-native Java framework designed for building high-performance, memory-efficient applications. It utilizes ahead-of-time native compilation to transform Java code into standalone, optimized binaries that eliminate the need for a virtual machine, enabling rapid startup and reduced memory consumption. By performing code augmentation during the build phase, it shifts heavy processing tasks away from runtime, ensuring that applications are optimized for cloud-native environments. The framework distinguishes itself through a unified approach to reactive and imperative program

    Marshals objects into binary formats for efficient storage and retrieval within the cache backend.

    Javacloud-nativehacktoberfestjava
    عرض على GitHub↗15,479
  • lmcache/lmcacheالصورة الرمزية لـ LMCache

    LMCache/LMCache

    6,909عرض على GitHub↗

    LMCache is a distributed key-value cache manager and tiering system designed to accelerate large language model inference. It functions as a tiered storage layer that offloads tensors from GPU memory to CPU RAM, local disks, or remote object stores, enabling the reuse of cached prefixes across different inference sessions and serving engines. The system differentiates itself through a disaggregated prefill-decode model, which separates prompt processing from token generation by transferring caches between distributed compute nodes. It utilizes peer-to-peer orchestration to share and retrieve

    Implements custom serialization and deserialization logic to control how tensors are encoded for different storage adapters.

    Pythonamdcudafast
    عرض على GitHub↗6,909
  • rails-api/active_model_serializersالصورة الرمزية لـ rails-api

    rails-api/active_model_serializers

    5,342عرض على GitHub↗

    Active Model Serializers is a Ruby on Rails JSON serializer used to transform model objects and associations into structured JSON responses for APIs. It functions as a model-to-JSON mapper and response formatter that decouples internal database schemas from external API contracts. The project utilizes a pluggable adapter pattern to organize serialized data according to specific standards, such as the JSON API specification. It provides a mechanism to map internal attributes to custom JSON keys and implements a serialization scope that allows for attribute and association filtering based on au

    Stores serialized object results as JSON to reduce computation time for repeat requests.

    Rubyjsonresource-serializerruby
    عرض على GitHub↗5,342
  • netflix/fast_jsonapiالصورة الرمزية لـ Netflix

    Netflix/fast_jsonapi

    5,036عرض على GitHub↗

    fast_jsonapi هو مسلسل كائنات Ruby مصمم لتحويل كائنات البيانات الخلفية المعقدة إلى تمثيلات JSON مهيكلة. ينفذ تحديداً تنسيق JSON:API لضمان تبادل بيانات متسق بين الخوادم والعملاء. تعمل المكتبة كمولد مستندات مركب، مما يسمح بتضمين الموارد ذات الصلة داخل استجابة واحدة لتقليل طلبات الشبكة. يستخدم تعريف مخطط قائم على الفئات لفصل نماذج قاعدة البيانات الداخلية عن تمثيل واجهة برمجة التطبيقات العامة. يتضمن المشروع أداة سطر أوامر لتوليد boilerplate المسلسل عن طريق مسح مخططات قاعدة البيانات. تتم إدارة الأداء من خلال التخزين المؤقت للمخرجات القائم على المفاتيح وأدوات القياس التي تتتبع زمن انتقال تنفيذ عمليات التسلسل والترميز.

    Caches the final JSON string of serialized objects to reduce computation time for repeat requests.

    Rubynot-maintained
    عرض على GitHub↗5,036
  1. Home
  2. Data & Databases
  3. Data Caching
  4. Serializers

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

  • Serialized Output CachingCaching the final JSON string of a serialized object to avoid re-computing the transformation. **Distinct from Serializers:** Caches the end-product JSON string rather than binary marshaling for storage.