awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repository-uri

Awesome GitHub RepositoriesTransparent Column Compression

Automatic compression and decompression of specific database columns to reduce disk footprint.

Distinct from JSON Field Compression: The candidates focus on JSON fields or general archiving, not transparent database column-level compression.

Explore 5 awesome GitHub repositories matching data & databases · Transparent Column Compression. Refine with filters or upvote what's useful.

Awesome Transparent Column Compression GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • tencent/wcdbAvatar Tencent

    Tencent/wcdb

    11,502Vezi pe GitHub↗

    WCDB is a cross-platform storage layer and embedded database engine that serves as a framework for SQLite. It functions as an object relational mapper, linking application classes to database tables to enable data operations via objects rather than raw queries. The project is distinguished by an integrated encryption layer for securing data at rest and a full-text search engine that uses language-specific tokenizers for text lookups. It also features transparent field compression to reduce storage footprints and a connection-pooling model to coordinate simultaneous read and write operations a

    Reduces storage footprints by automatically compressing and decompressing specific table fields.

    Candroiddatabaseios
    Vezi pe GitHub↗11,502
  • apache/pinotAvatar apache

    apache/pinot

    6,098Vezi pe GitHub↗

    Pinot is a distributed, columnar analytical database designed for high-concurrency, low-latency query processing. It functions as a real-time OLAP datastore, enabling interactive, user-facing analytics by ingesting and querying massive datasets from both streaming and batch sources. The system architecture relies on a centralized controller for cluster coordination and a distributed segment-based storage model to ensure horizontal scalability. The platform distinguishes itself through a hybrid ingestion pipeline that unifies real-time event streams and historical batch data into a single quer

    Applies dictionary encoding or bit compression to reduce the storage footprint of column data.

    Java
    Vezi pe GitHub↗6,098
  • balloonwj/cppguideAvatar balloonwj

    balloonwj/CppGuide

    6,030Vezi pe GitHub↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Encodes numeric fields using fewer bytes than native representation to reduce wire size.

    Vezi pe GitHub↗6,030
  • ydb-platform/ydbAvatar ydb-platform

    ydb-platform/ydb

    4,738Vezi pe GitHub↗

    YDB este o bază de date SQL distribuită și un motor analitic conceput pentru scalabilitate orizontală și consistență puternică. Funcționează ca un sistem multi-model care suportă workload-uri tranzacționale și analitice printr-o arhitectură distribuită care oferă tranzacții ACID serializabile. Sistemul se distinge prin compatibilitatea sa largă cu protocoalele, implementând protocolul PostgreSQL pentru driverele SQL standard și protocolul Kafka pentru mesagerie și streaming. Servește, de asemenea, ca o bază de date vectorială, suportând indecși vectoriali și căutări de tip approximate nearest neighbor pentru căutări semantice și embeddings. Platforma gestionează datele folosind un model de stocare hibrid cu formate orientate pe rânduri și pe coloane, utilizând execuția interogărilor vectorizate pentru analize la scară de petabytes. Suprafața sa operațională include streaming de tip change data capture, cozi persistente de tip exactly-once și disponibilitate ridicată multi-zonă. Deployment-ul și gestionarea ciclului de viață sunt susținute printr-un operator Kubernetes și provizionarea de tip infrastructure-as-code.

    Organizes columns into groups to apply specialized compression modes and optimize physical hardware allocation.

    C++cloud-nativecppdatabase
    Vezi pe GitHub↗4,738
  • roaringbitmap/roaringbitmapAvatar RoaringBitmap

    RoaringBitmap/RoaringBitmap

    3,878Vezi pe GitHub↗

    RoaringBitmap is a compressed integer set library designed for memory-efficient storage and high-speed in-memory analytics. It provides a professional implementation of the Roaring Bitmap format to maintain compact representations of integer collections. The project features a standardized binary serialization format that enables the exchange of compressed bitmap data across different programming languages and hardware architectures. This allows for consistent data portability and cross-language data exchange. The library performs rapid logical set operations, including intersections, unions

    Dynamically switches between bitsets, sorted arrays, and run-length encoding based on data density.

    Javabitsetdruidjava
    Vezi pe GitHub↗3,878
  1. Home
  2. Data & Databases
  3. Transparent Column Compression

Explorează sub-etichetele

  • Floating-Point Column CompressionXOR-based compression extended for reverse-order decompression to efficiently store float data with minimal loss. **Distinct from Transparent Column Compression:** Distinct from Transparent Column Compression: specifies the XOR-based algorithm for floating-point data, not general transparent column compression.
  • Integer Column Compression1 sub-tagDelta encoding, delta-of-delta, simple-8b, and run-length encoding applied to integer-like data with backward-scan decompression. **Distinct from Transparent Column Compression:** Distinct from Transparent Column Compression: specifies the specific algorithms (delta encoding, simple-8b, run-length) for integer data, not general transparent compression.