4 مستودعات
Mechanisms for executing custom logic at specific stages of data persistence operations.
Distinguishing note: None of the candidates were provided; this focuses on database operation lifecycle events.
Explore 4 awesome GitHub repositories matching data & databases · Lifecycle Hooks. Refine with filters or upvote what's useful.
GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora
Executes user-defined logic at specific points in the database operation lifecycle to enable custom data validation and transformation.
TypeORM is an object-relational mapper for TypeScript and JavaScript that bridges the gap between object-oriented application code and relational database tables. It provides a comprehensive data persistence layer that allows developers to define database entities using class decorators or configuration objects, enabling seamless interaction with data through object-oriented patterns. The project distinguishes itself through a flexible architecture that supports both the data mapper and repository patterns, alongside a fluent query builder that translates high-level method calls into platform
Executes custom logic automatically during specific entity lifecycle events via class methods.
Sequelize is an object-relational mapping library that provides a unified interface for managing relational data through code. By implementing the Active Record pattern, it maps database tables to application objects, allowing developers to perform standard create, read, update, and delete operations using high-level method calls. The library abstracts complex database interactions by translating these calls into optimized, engine-specific SQL statements, ensuring consistent behavior across different database systems. The project distinguishes itself through a comprehensive suite of tools for
Sequelize allows executing custom logic automatically before or after specific model operations by registering functions that trigger during defined lifecycle events.
يوفر هذا المشروع حلاً لتخزين القيمة الرئيسية عالي الأداء لتطبيقات الجوال، باستخدام ملفات معينة في الذاكرة لتمكين عمليات القراءة والكتابة السريعة. يعمل كطبقة بيانات مستمرة تتكامل مباشرة مع وقت تشغيل JavaScript لتقليل الحمل، مع دعم مزامنة الحالة التفاعلية لضمان تحديث مكونات الواجهة تلقائياً عند تغير البيانات المخزنة. يتميز نظام التخزين بقدرته على إدارة مثيلات قاعدة بيانات مستقلة متعددة، مما ينظم البيانات حسب الوحدة ويمنع التصادمات بين مكونات التطبيق. وهو يسهل مشاركة البيانات الموثوقة عبر عمليات مختلفة، مثل بين تطبيق رئيسي وملحقات الخلفية أو الأدوات المصغرة الخاصة به، عن طريق تنسيق الوصول المتزامن من خلال قفل قائم على الملفات مشترك. تشمل قدرات الأمان والإدارة التخزين المشفر الذي يستفيد من مخازن مفاتيح الأجهزة الأصلية للمنصة لحماية المعلومات الحساسة في حالة السكون. يدمج النظام أيضاً خطافات دورة الحياة لمراقبة عمليات البيانات، ومحولات الدمج لأنماط إدارة الحالة القياسية، وأدوات التطوير لتصحيح الأخطاء في الوقت الفعلي. بالنسبة لبيئات الاختبار، يتضمن المشروع تنفيذاً للتخزين في الذاكرة لمحاكاة الاستمرارية دون الحاجة إلى تخزين مادي للجهاز.
Registers custom logic to monitor or intercept read, write, and delete operations for advanced data management.