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

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

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

ptarjan/node-cache

0
View on GitHub↗
1,595 نجوم·172 تفرعات·JavaScript·BSD-2-Clause·9 مشاهدات

Node Cache

Node-cache هو وحدة تخزين بيانات خفيفة الوزن في الذاكرة مصممة لتطبيقات Node.js. تعمل كمخزن مفتاح-قيمة يحتفظ بالبيانات التي يتم الوصول إليها بشكل متكرر مباشرة داخل وقت تشغيل التطبيق لتحسين أوقات الاستجابة وتقليل زمن الوصول.

تدير المكتبة دورة حياة المعلومات المخزنة من خلال سياسات انتهاء الصلاحية المؤتمتة، التي تستخدم مؤقتات داخلية لإزالة الإدخالات القديمة بمجرد انقضاء مدة زمنية محددة للبقاء. توفر تحكماً دقيقاً في الموارد المخزنة، مما يسمح بالفحص اليدوي، أو الحذف، أو مسح مفاتيح محددة لإدارة استخدام الذاكرة بفعالية.

بعيداً عن التخزين الأساسي، تتضمن الوحدة أدوات مراقبة تتتبع نجاحات التخزين المؤقت، والإخفاقات، وإجمالي عدد الإدخالات للمساعدة في تقييم كفاءة التخزين. كما تدعم استمرارية الحالة من خلال توفير أدوات لتسلسل محتويات التخزين المؤقت بالكامل إلى تنسيق JSON، مما يسهل ترحيل البيانات أو استعادة الحالة عبر بيئات التطبيق.

Features

  • In-Memory Data Stores - Stores frequently accessed data in application memory to reduce latency for Node.js backend services.
  • TTL Expiration Management - Implements automatic removal of stale entries using internal timers based on defined time-to-live durations.
  • Entry Expiration Policies - Automates the removal of stale information to reclaim memory and ensure data remains current.
  • Node.js Caches - Provides a lightweight storage module for keeping key-value pairs in Node.js application memory.
  • Key-Value Stores - Functions as a lightweight local key-value store for managing temporary application data.
  • Cache Value Retrievals - Enables efficient storage and retrieval of key-value pairs with safe handling of missing or expired items.
  • In-Memory State Maps - Uses standard JavaScript objects as key-value structures to provide constant-time access to cached application state.
  • Cache Expiration Management - Manages the lifecycle of cached items through automated expiration policies to ensure data freshness.
  • Cache Key Management - Provides administrative tools to inspect, clear, or delete specific keys to maintain precise control over memory usage.
  • Node.js Development Utilities - Acts as a performance utility to improve application response times by caching data within the runtime.
  • Cache Efficiency Metrics - Provides internal event signals for cache hits and misses to enable real-time monitoring of storage efficiency.
  • Cache Performance Monitoring - Tracks cache hits, misses, and entry counts to evaluate storage efficiency and identify performance bottlenecks.

سجل النجوم

مخطط تاريخ النجوم لـ ptarjan/node-cacheمخطط تاريخ النجوم لـ ptarjan/node-cache

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

مجموعات مختارة تضم Node Cache

مجموعات منسقة بعناية يظهر فيها Node Cache.
  • مخازن مفتاح-قيمة في الذاكرة

بدائل مفتوحة المصدر لـ Node Cache

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Node Cache.
  • hazelcast/hazelcastالصورة الرمزية لـ hazelcast

    hazelcast/hazelcast

    6,570عرض على GitHub↗

    Hazelcast is a distributed data platform that combines an in-memory data grid with a stream processing engine to support real-time analytics and event-driven applications. It functions as a partitioned, distributed key-value store that replicates data across cluster nodes to provide low-latency access and high availability. The platform also serves as a distributed SQL query engine, allowing users to execute standard SQL statements against both in-memory datasets and external data sources. What distinguishes Hazelcast is its use of a distributed consensus subsystem to maintain strongly consis

    Javabig-datacachingdata-in-motion
    عرض على GitHub↗6,570
  • pmylund/go-cacheالصورة الرمزية لـ pmylund

    pmylund/go-cache

    8,828عرض على GitHub↗

    go-cache is a thread-safe, in-memory key-value store for single-machine applications. It provides a local caching mechanism that stores objects in RAM to reduce redundant data retrieval and avoid the overhead of network protocols or serialization. The system features a persistent cache store that saves the in-memory state to a local file, allowing data recovery across application restarts. The project manages concurrent data access across multiple routines and implements time-to-live expiration for cached entries. A background process periodically scans the store to delete expired items and

    Go
    عرض على GitHub↗8,828
  • patrickmn/go-cacheالصورة الرمزية لـ patrickmn

    patrickmn/go-cache

    8,828عرض على GitHub↗

    go-cache is a thread-safe, in-memory cache library for Go that stores arbitrary objects with per-item expiration timestamps. It provides a concurrent key-value store where multiple goroutines can safely read and write shared cached data without external synchronization, using a mutex-guarded map for access control. The library distinguishes itself through its expiration management and optional disk persistence. Each cached item carries its own time-to-live, and a background goroutine periodically purges expired entries. The cache can serialize its entire contents to disk using Go's gob encodi

    Gocachegolibrary
    عرض على GitHub↗8,828
  • tporadowski/redisالصورة الرمزية لـ tporadowski

    tporadowski/redis

    9,987عرض على GitHub↗

    Redis is a high-performance in-memory key-value store that functions as a distributed cache, message broker, and NoSQL database. It provides sub-millisecond read and write access to data stored in RAM and can operate as a vector database for indexing high-dimensional embeddings. The system supports a wide range of data storage and synchronization primitives, including the management of strings, hashes, lists, sets, and JSON documents. It enables real-time data operations through atomic transactions, hybrid persistence using snapshots and append-only logs, and high-availability configurations

    Credisredis-for-windowsredis-msi-installer
    عرض على GitHub↗9,987
عرض جميع البدائل الـ 30 لـ Node Cache→

الأسئلة الشائعة

ما هي وظيفة ptarjan/node-cache؟

Node-cache هو وحدة تخزين بيانات خفيفة الوزن في الذاكرة مصممة لتطبيقات Node.js. تعمل كمخزن مفتاح-قيمة يحتفظ بالبيانات التي يتم الوصول إليها بشكل متكرر مباشرة داخل وقت تشغيل التطبيق لتحسين أوقات الاستجابة وتقليل زمن الوصول.

ما هي الميزات الرئيسية لـ ptarjan/node-cache؟

الميزات الرئيسية لـ ptarjan/node-cache هي: In-Memory Data Stores, TTL Expiration Management, Entry Expiration Policies, Node.js Caches, Key-Value Stores, Cache Value Retrievals, In-Memory State Maps, Cache Expiration Management.

ما هي البدائل مفتوحة المصدر لـ ptarjan/node-cache؟

تشمل البدائل مفتوحة المصدر لـ ptarjan/node-cache: hazelcast/hazelcast — Hazelcast is a distributed data platform that combines an in-memory data grid with a stream processing engine to… pmylund/go-cache — go-cache is a thread-safe, in-memory key-value store for single-machine applications. It provides a local caching… patrickmn/go-cache — go-cache is a thread-safe, in-memory cache library for Go that stores arbitrary objects with per-item expiration… tporadowski/redis — Redis is a high-performance in-memory key-value store that functions as a distributed cache, message broker, and NoSQL… redis/go-redis — This project is a feature-rich Go client library designed for interacting with Redis. It serves as a comprehensive… valkey-io/valkey — Valkey is an in-memory, NoSQL database server designed for high-performance data storage and real-time state…