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

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

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

5 مستودعات

Awesome GitHub RepositoriesCache Mutation Utilities

Tools for updating and revalidating local data caches.

Distinguishing note: None available; minting under Data & Databases.

Explore 5 awesome GitHub repositories matching data & databases · Cache Mutation Utilities. Refine with filters or upvote what's useful.

Awesome Cache Mutation Utilities GitHub Repositories

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

    tannerlinsley/react-query

    49,769عرض على GitHub↗

    React Query is an asynchronous state management library and data fetching orchestrator designed to fetch, cache, and synchronize server state in web applications. It functions as a server-state cache manager that handles asynchronous data requests to keep local application state in sync with a remote server. The library implements a stale-while-revalidate cache pattern, which provides immediate access to cached data while triggering background updates to maintain consistency. It further supports optimistic user interface updates, allowing the interface to change immediately during data mutati

    Provides utilities for updating and revalidating local data caches during the mutation lifecycle.

    TypeScript
    عرض على GitHub↗49,769
  • vercel/swrالصورة الرمزية لـ vercel

    vercel/swr

    32,406عرض على GitHub↗

    SWR is a data fetching library that provides a collection of hooks for managing remote data synchronization, caching, and state updates in web applications. It employs a declarative approach to handle complex network request lifecycles and dependency chains, ensuring that client-side application state remains consistent with server data through automatic revalidation and background updates. The library distinguishes itself through a reactive cache layer that automatically synchronizes local state with remote sources based on component lifecycle events. It features event-driven revalidation, w

    Updates local cache data and triggers revalidation for specific keys using bound mutator functions.

    TypeScriptcachedatadata-fetching
    عرض على GitHub↗32,406
  • memcached/memcachedالصورة الرمزية لـ memcached

    memcached/memcached

    14,132عرض على GitHub↗

    Memcached is a high-performance, distributed, in-memory key-value storage and request routing engine. It functions as a volatile data store designed to accelerate dynamic applications by caching objects in RAM, thereby reducing backend database load and providing sub-millisecond response times. The system utilizes a specialized architecture that organizes memory into fixed-size slabs to minimize fragmentation and maximize throughput for high-concurrency workloads. The project distinguishes itself through a multi-threaded, lock-friendly design that scales across CPU cores and supports complex

    Updates or replaces stored data with optional version checking to ensure consistency and prevent accidental overwrites.

    C
    عرض على GitHub↗14,132
  • vuejs/vue-apolloالصورة الرمزية لـ vuejs

    vuejs/vue-apollo

    6,041عرض على GitHub↗

    Vue Apollo is a GraphQL client library for Vue.js that integrates Apollo GraphQL queries and mutations into Vue components with reactive data binding. It provides a reactive data layer that automatically updates Vue component state when GraphQL query results change, and supports server-side rendering by prefetching queries during SSR to deliver fully populated HTML on initial page load. The library allows GraphQL queries and mutations to be declared directly inside Vue component options using the apollo property, keeping data dependencies co-located with the UI. It wraps Apollo Client's nor

    Updates the Apollo Client normalized cache with mutation response data and triggers reactive updates to dependent queries.

    TypeScript
    عرض على GitHub↗6,041
  • vercel/next-learnالصورة الرمزية لـ vercel

    vercel/next-learn

    4,745عرض على GitHub↗

    next-learn هي مجموعة من الموارد التعليمية ونماذج التنفيذ لبناء تطبيقات ويب متكاملة (Full-stack). تعمل كمورد تعليمي ودرس تعليمي لإطار عمل Next.js، حيث توفر كوداً أولياً ومشاريع أمثلة توضح العرض من جانب الخادم (SSR) والنظام البيئي المعتمد على React. يوفر المشروع قالب ويب متكامل يعرض تنفيذاً كاملاً لتكامل قاعدة البيانات، ومصادقة المستخدم، ومنطق جانب الخادم. يتضمن أمثلة مرجعية لتحسين أداء الويب، توضح تحديداً استخدام مكونات الخادم، وإجراءات الخادم، والتوجيه الديناميكي. تغطي قاعدة الكود سطحاً واسعاً من قدرات التطبيقات المتكاملة، بما في ذلك إدارة البيانات من خلال الاستعلام والتعديل من جانب الخادم، والتحكم في الوصول القائم على الهوية عبر حراس المسار، وهيكلية التنقل باستخدام التوجيه القائم على نظام الملفات. كما تنفذ استراتيجيات عرض متنوعة، وتحسين الأصول للصور والخطوط، وتصميم واجهة المستخدم.

    Updates database records via server actions and refreshes the application cache to maintain data currency.

    TypeScript
    عرض على GitHub↗4,745
  1. Home
  2. Data & Databases
  3. Cache Mutation Utilities

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

  • GraphQL Cache MutationsUpdates the Apollo Client normalized cache with mutation response data and triggers reactive updates to dependent queries. **Distinct from Cache Mutation Utilities:** Distinct from general Cache Mutation Utilities: specifically updates GraphQL normalized caches with mutation results, not arbitrary cache stores.
  • Mutation HandlersTools for updating or replacing cached data with consistency checks. **Distinct from Cache Mutation Utilities:** Distinct from Cache Mutation Utilities: focuses on the specific logic of version-checked updates.