6 مستودعات
Processes for opening and configuring a database instance, including file-based or in-memory setups.
Distinguishing note: Focuses on the startup/opening phase of the database engine, which is not covered by the candidates.
Explore 6 awesome GitHub repositories matching data & databases · Database Initializations. Refine with filters or upvote what's useful.
This is a mobile object database and NoSQL local data store that replaces relational tables with a schema-based model. It functions as a reactive data store, using live object observations and change notifications to trigger automatic user interface refreshes. The system provides built-in mobile cloud data synchronization to keep local datasets consistent with a remote server across multiple devices. It also includes security features for encrypted local storage, protecting sensitive on-disk data using at-rest encryption keys and fine-grained access control. Broad capabilities include object
Allows initializing a local data store using default settings, specific file paths, or in-memory configurations.
bbolt is an ACID-compliant embedded key-value store for Go applications. It persists all data in a single memory-mapped file on disk, organizing information using B+ trees to facilitate sorted key iteration and efficient range queries. The project distinguishes itself through a hierarchical data organization model, allowing buckets to be nested within other buckets to create a tree-like structure. It employs a single-writer, multi-reader locking mechanism and copy-on-write transactions to ensure serializable isolation and data integrity. The system includes comprehensive data management capa
Manages the process of opening a database file with options for read-only access and memory pre-loading.
يعمل هذا المشروع كمركز توثيق ومستودع مواصفات لصور Docker الرسمية. يعمل كمولد توثيق مدفوع بالبيانات الوصفية يحول ملفات المحتوى المهيكلة إلى ملفات markdown وملفات readme للتوزيع العام. يوفر المستودع أدلة تقنية ومعايير تهيئة لنشر البرمجيات المعبأة عبر معماريات CPU متعددة. ويتضمن أدلة مفصلة لتهيئة متغيرات البيئة، وتثبيتات وحدات التخزين، وإعدادات الشبكة لضمان عمليات نشر صور متسقة. يغطي التوثيق مجموعة واسعة من البيئات المعبأة، بما في ذلك توزيعات Linux المختلفة وبيئات Unix الدنيا. ويفصل نشر مثيلات قاعدة البيانات، وبيئات تشغيل Java، وأنظمة إدارة المحتوى، مع التركيز على تحسين الحاويات خفيفة الوزن واستمرارية البيانات. يستخدم المشروع التحقق الآلي لفحص ملفات مصدر markdown وYAML مقابل معايير التنسيق قبل نشرها.
Supports running shell scripts or restoring database dumps to initialize database instances during container startup.
koa2-note هو مشروع يركز على تطوير خوادم الويب باستخدام Koa2 والبرمجة غير المتزامنة في Node.js. يوفر إطار عمل لبناء خوادم الويب وواجهات برمجة التطبيقات (APIs) باستخدام خط معالجة (middleware) غير متزامن للتعامل مع دورات الطلب والاستجابة. يؤكد المشروع على بنية خلفية (backend) ذات طبقات تفصل بين التوجيه (routing)، وخدمات الأعمال، ونماذج البيانات. يتميز بدمج قواعد بيانات علائقية لحفظ جلسات المستخدم وبيانات التطبيق، إلى جانب عملية بناء تتضمن تجميع JSX إلى JavaScript لأصول الواجهة الأمامية. تغطي إمكانيات المشروع تصميم واجهات برمجة التطبيقات الخلفية، بما في ذلك التوجيه RESTful وتحليل بيانات الطلب، بالإضافة إلى العرض من جانب الخادم (SSR) باستخدام محركات القوالب. كما يتضمن دعماً لرفع الملفات غير المتزامن باستخدام تحليل التدفق متعدد الأجزاء، وإدارة الجلسات القائمة على ملفات تعريف الارتباط (cookies)، وتنفيذ JSONP للطلبات عبر النطاقات. يعمل المستودع كمورد تعليمي مع دروس منظمة وأمثلة لتعلم تنفيذ إطار عمل Koa وبنية الخادم.
Configures and opens database instances to enable persistent storage for the application.
ActiveAndroid is a persistence framework for managing local SQLite databases on Android. It provides an active record object-relational mapping system that binds database tables to classes, allowing for data persistence and retrieval without writing manual SQL. The project distinguishes itself through a dedicated schema migration tool that updates database structures using versioned scripts loaded from application assets. It also includes a framework for sharing database content between different Android applications via a standard URI-based content provider interface. The library covers bro
Provides mechanisms for initializing the database using pre-populated files from application assets.
H2 is a JDBC-compliant relational database management system written in Java. It functions as an embeddable SQL database that can run directly within an application process to remove network latency, or as an in-memory database for high-performance volatile storage. It also includes a web-based console for executing SQL commands and administering schemas. The system is characterized by its flexible deployment modes, including a standalone server mode for remote TCP/IP access and a mixed mode for simultaneous local and remote connectivity. It features a dialect emulation layer and compatibilit
Initializes new databases via connection URLs, shell tools, or the web console.