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

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

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

6 مستودعات

Awesome GitHub RepositoriesMessage Caching Services

Systems that store transient messages to ensure data availability and retrieval after client disconnections.

Distinguishing note: Focuses on message persistence for retrieval rather than general-purpose caching.

Explore 6 awesome GitHub repositories matching data & databases · Message Caching Services. Refine with filters or upvote what's useful.

Awesome Message Caching Services GitHub Repositories

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

    binwiederhier/ntfy

    30,790عرض على GitHub↗

    ntfy is a self-hosted messaging infrastructure that provides a lightweight platform for sending and receiving real-time notifications. It functions as a topic-based pub-sub server, allowing users to publish and subscribe to message channels using standard HTTP requests. By bridging server-side events with native mobile and desktop clients, it enables the delivery of alerts across various environments through a unified communication layer. The project distinguishes itself by offering a complete, private notification ecosystem that includes persistent message caching and robust access control.

    Stores incoming notifications in a relational database to allow clients to retrieve historical messages after reconnecting.

    Gocurlnotificationsntfy
    عرض على GitHub↗30,790
  • nats-io/nats-serverالصورة الرمزية لـ nats-io

    nats-io/nats-server

    20,076عرض على GitHub↗

    NATS Server is a high-performance, lightweight messaging system designed for cloud-native applications, edge computing, and distributed microservices. It functions as a distributed publish-subscribe broker that routes messages using hierarchical, dot-separated subject strings, enabling decoupled communication between services without requiring centralized broker lookups. The system supports core messaging patterns including asynchronous publish-subscribe, request-reply, and load-balanced queue processing. The platform distinguishes itself through a decentralized architecture that eliminates t

    Caches published messages locally during connection drops to ensure automatic transmission upon reconnection.

    Gocloudcloud-computingcloud-native
    عرض على GitHub↗20,076
  • apple/foundationdbالصورة الرمزية لـ apple

    apple/foundationdb

    16,446عرض على GitHub↗

    FoundationDB is an ACID-compliant distributed transactional key-value store. It functions as a scalable database engine that ensures strict serializability and data consistency across a cluster of servers using a shared-nothing architecture. The system is distinguished by its multi-region replication capabilities, allowing data to be synchronized across different datacenters for high availability and disaster recovery. It utilizes optimistic concurrency control to manage distributed transactions and employs a majority-based coordination system to maintain cluster state. The platform provides

    Collects and coalesces transaction changes in client memory to send them as a single batch.

    C++aciddistributed-databasefoundationdb
    عرض على GitHub↗16,446
  • josephg/sharejsJ

    josephg/sharejs

    4,988عرض على GitHub↗

    ShareJS هي قاعدة بيانات مستندات تعاونية ومحرك مزامنة مصمم لإدارة الحالة المشتركة في الوقت الفعلي. توفر محرك مزامنة التحويل التشغيلي لتمكين التحرير المتزامن لبيانات النص العادي وJSON، وواجهة برمجة تطبيقات RESTful للمزامنة لإدارة حالات المستندات عبر HTTP. يتميز النظام بطبقة مزامنة بيانات تعتمد على وضع عدم الاتصال أولاً (offline-first) تقوم بوضع التعديلات المحلية في قائمة انتظار أثناء قطع الاتصال وتدفع التعديلات تلقائياً عند إعادة الاتصال. كما يتضمن طبقة تحكم في الوصول للوسيط تعترض طلبات قاعدة البيانات لفرض سياسات الأمان وإعادة كتابة الطلبات. تغطي المنصة مجموعة واسعة من الإمكانيات بما في ذلك اشتراكات الاستعلام المباشر، وإشعارات التغيير في الوقت الفعلي، ومزامنة المحتوى المتزامن. تسمح هذه المكونات بإنشاء خلاصات بيانات حيث يتم إخطار العملاء فوراً عند تحديث المستندات الخلفية التي تطابق استعلامات معينة.

    Implements a persistent client-side buffer that queues document modifications during network interruptions for automatic synchronization upon reconnection.

    JavaScript
    عرض على GitHub↗4,988
  • nixzhu/dev-blogالصورة الرمزية لـ nixzhu

    nixzhu/dev-blog

    3,906عرض على GitHub↗

    This project is a comprehensive framework for iOS application development, centered on building mobile applications that feature custom user interface components, asynchronous task management, and local data persistence. It serves as a technical knowledge base for software engineering, providing tools to organize and publish architectural analyses and notes in Markdown format. The framework distinguishes itself through a robust document-based storage layer that utilizes BSON-formatted records to perform CRUD operations within a NoSQL document store. It provides extensive system integration ca

    Fetches previously sent message objects from the shared file system using a unique identifier.

    عرض على GitHub↗3,906
  • conversejs/converse.jsالصورة الرمزية لـ conversejs

    conversejs/converse.js

    3,265عرض على GitHub↗

    Converse.js is an embeddable, self-hosted XMPP chat client that runs entirely in the browser. It communicates with XMPP servers using standard XML stanzas over WebSocket or BOSH transports, and provides end-to-end encryption through the OMEMO protocol with double ratchet algorithm and X3DH key exchange. The client is built on a plugin-based architecture that allows extending core functionality at runtime without modifying the client itself, and uses a DOM-based rendering approach with an event-driven message bus for internal coordination. The client manages message history through XEP-0313 Me

    Converse.js clears cached chat messages upon reconnection to prevent long or gapped histories.

    JavaScriptchatjabberlit
    عرض على GitHub↗3,265
  1. Home
  2. Data & Databases
  3. Message Caching Services

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

  • Cache Clearing on ReconnectionClears locally cached chat messages upon reconnection to prevent stale or gapped histories. **Distinct from Message Caching Services:** Distinct from Message Caching Services: focuses on clearing the local cache on reconnect, not on storing messages for retrieval.
  • Client-Side Buffers2 وسوم فرعيةMechanisms for caching messages locally during network interruptions. **Distinct from Message Caching Services:** Distinct from Message Caching Services: focuses on client-side buffering for reconnection resilience rather than server-side message storage.