2 مستودعات
Mechanisms for directing data requests to different storage sources based on availability or runtime logic.
Distinct from Data Sources: Focuses on the routing logic between memory, disk, and cloud, rather than just providing the data source itself.
Explore 2 awesome GitHub repositories matching data & databases · Data Source Routing. Refine with filters or upvote what's useful.
هذا المشروع عبارة عن قالب تطبيق Android مرجعي بلغة Kotlin ومجموعة من التنفيذات النموذجية التي توضح مبادئ الهندسة النظيفة (Clean Architecture). يوفر تصميماً هيكلياً يعزل قواعد العمل الأساسية عن واجهة المستخدم ومصادر البيانات في وحدات متميزة ومطبقة. يركز التنفيذ على نمط Model-View-ViewModel (MVVM) لفصل منطق واجهة المستخدم عن نماذج البيانات. ويستخدم إطار عمل حقن التبعية (Dependency Injection) لأتمتة إنشاء الكائنات وإدارة دورات حياة المكونات، بينما يستخدم نمط المستودع (Repository) لتجريد طلبات البيانات عبر الذاكرة، والقرص، ومصادر السحابة. تدمج الهندسة تنظيم الحزم القائم على الميزات وتكوينات البناء النمطية للحفاظ على الاتساق عبر المشروع. كما تتضمن استراتيجية اختبار شاملة تجمع بين اختبارات الوحدة لمنطق العمل مع الأجهزة لواجهة المستخدم ووحدات وهمية للتحقق من طبقة البيانات.
Provides a repository implementation that routes data requests between memory, disk, or cloud sources based on availability.
This project is a clean architecture reference implementation and modular project template for Android development. It provides a structural blueprint designed to isolate business logic from external frameworks and user interfaces. The template emphasizes a modular approach to organize code into independent modules, which is intended to improve build times and long-term project scalability. It demonstrates the application of domain-driven design to keep core business rules and entities independent from the underlying platform. The implementation covers several key architectural patterns, inc
Coordinates data retrieval between remote APIs and local caches through a single access point.