2 مستودعات
Delta 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.
Explore 2 awesome GitHub repositories matching data & databases · Integer Column Compression. Refine with filters or upvote what's useful.
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.
RoaringBitmap is a Java-based library designed for the memory-efficient storage and high-speed querying of large sets of integers. It functions as an in-memory analytics tool that maintains compact data representations while supporting rapid set calculations, such as intersections, unions, and differences. The library distinguishes itself through a hybrid compression strategy that automatically selects between bitsets, sorted arrays, or run-length encoding based on the density of the data. It utilizes a two-level hierarchical index to provide constant-time random access lookups, ensuring perf
Automatically switches between bitsets, sorted arrays, and run-length encoding to optimize storage based on data density.