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

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

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

2 مستودعات

Awesome GitHub RepositoriesConcurrency Versioning

Incrementing version fields during updates to prevent conflicting modifications.

Distinct from Record State Versioning: Focuses on preventing update conflicts (optimistic locking) rather than retrieving historical states

Explore 2 awesome GitHub repositories matching data & databases · Concurrency Versioning. Refine with filters or upvote what's useful.

Awesome Concurrency Versioning GitHub Repositories

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

    go-xorm/xorm

    6,628عرض على GitHub↗

    xorm is a relational mapper and object-relational mapping tool for Go. It translates Go structures into SQL queries and maps database rows back into native objects, providing a multi-dialect database driver that supports MySQL, PostgreSQL, SQLite, Oracle, SQL Server, and TiDB. The project features a read-write splitting manager that routes modification requests to a primary database and read requests to replicas. It includes a database schema synchronizer to automatically align table structures and indexes with application data models, as well as a fluent SQL query builder for constructing co

    Prevents conflicting modifications by automatically incrementing a version field during updates.

    Gogolangmssqlmysql
    عرض على GitHub↗6,628
  • jakewharton/disklrucacheالصورة الرمزية لـ JakeWharton

    JakeWharton/DiskLruCache

    5,783عرض على GitHub↗

    DiskLruCache is a disk-backed key-value cache library for Android and Java environments that stores data on the filesystem within a configurable byte limit. It uses a least-recently-used (LRU) eviction policy to automatically remove old entries when the cache exceeds its allocated size, and maintains a journal file to reconstruct its in-memory state after a process restart. The cache provides atomic write operations that first write new data to a temporary file before atomically renaming it, preventing partial or corrupted reads during concurrent access. It returns frozen snapshots of cache e

    Requires monotonically increasing version numbers per entry to detect stale modifications.

    Java
    عرض على GitHub↗5,783
  1. Home
  2. Data & Databases
  3. Database Versioning
  4. Record State Versioning
  5. Concurrency Versioning