awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesPhysical Format Migrations

Upgrades a database to newer physical file formats at runtime using background or blocking compaction.

Distinct from Database Version Migrations: Distinct from Database Version Migrations: focuses on physical file format changes, not software version upgrades or schema changes.

Explore 3 awesome GitHub repositories matching data & databases · Physical Format Migrations. Refine with filters or upvote what's useful.

Awesome Physical Format Migrations GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • cockroachdb/pebbleAvatar von cockroachdb

    cockroachdb/pebble

    5,777Auf GitHub ansehen↗

    Pebble is an embedded key-value storage engine written in Go, designed as a library that provides durable, write-optimized data persistence directly within applications. It organizes data using a log-structured merge-tree (LSM-tree) structure, where writes are first buffered in an in-memory skiplist memtable and persisted to a write-ahead log before being flushed to block-based SSTable files on disk. The engine supports atomic batch commits, configurable write synchronization, and automatic background compaction that merges and rewrites sorted runs to reclaim space and maintain read performanc

    Upgrades a database to newer physical file formats at runtime using background or blocking compaction.

    Go
    Auf GitHub ansehen↗5,777
  • tc39/proposal-temporalAvatar von tc39

    tc39/proposal-temporal

    3,701Auf GitHub ansehen↗

    This project is a proposal for a new immutable date and time API in JavaScript. It serves as a precision time-tracking library and a multi-calendar date engine designed to replace the legacy Date object. The system is distinguished by its support for multiple calendar systems beyond the ISO standard and its use of IANA-based time zone resolution. It provides a framework for managing daylight saving transitions and UTC offsets while maintaining nanosecond precision for global timestamps. The API covers broad functional areas including complex date and time arithmetic, locale-aware formatting,

    Combines a date with a specific time of day to create a full date-time representation.

    HTML
    Auf GitHub ansehen↗3,701
  • simolus3/driftAvatar von simolus3

    simolus3/drift

    3,231Auf GitHub ansehen↗

    Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database tables to classes and execute SQL queries with build-time validation. It functions as a type-safe query builder and a wrapper for SQLite and PostgreSQL, eliminating manual result set parsing by binding query outputs to native objects. The project distinguishes itself through a build-time code generation system that produces type-safe APIs and validates raw SQL statements against database versions before execution. It features reactive query streaming, which transforms SQL queries

    Provides utilities to convert database columns between integer timestamps and textual representations for schema compatibility.

    Dartdartdart-build-systemflutter
    Auf GitHub ansehen↗3,231
  1. Home
  2. Data & Databases
  3. Database Version Migrations
  4. Physical Format Migrations

Unter-Tags erkunden

  • Date and Time Conversions1 Sub-TagSpecialized migrations for transforming temporal data representations between different formats. **Distinct from Physical Format Migrations:** Focuses on data value transformation of date/time columns, whereas Physical Format Migrations refers to the database file's binary layout.