Data Compression
Everything on SkillVeris tagged Data Compression — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
Columnar Storage vs Row Storage: What is the Difference?
Row storage writes all columns of a single record contiguously on disk, making it fast to read or write an entire row at once, while columnar storage groups ea…
What Are Time-Series Databases and When Should You Use One?
A time-series database is a storage engine purpose-built for data points indexed by time, optimizing for high-volume append-only writes, time-range queries, an…
What is the Huffman Coding Algorithm?
Huffman coding is a greedy algorithm that builds an optimal prefix-free binary code by repeatedly merging the two least-frequent symbols into a new tree node,…