Hash
Everything on SkillVeris tagged Hash — collected across the glossary, study notes, blog, and cheat sheets.
7 resources across 2 libraries
Study Notes(5)
Vectors and Hash Tables in LISP
When to reach for vectors and hash tables instead of lists — constant-time indexed and keyed access versus linked-chain traversal.
Redis Cluster Explained
How Redis Cluster shards data across multiple nodes using hash slots, and how it handles failover and multi-key operations.
Hash Set and Hash Map Applications
Practical, real-world uses of hash sets and hash maps for deduplication, counting, caching, and fast lookups.
Hash Tables
A data structure that maps keys to values using a hash function for near-constant time lookups, insertions, and deletions.
Consistent Hashing
Introduces the hashing technique that minimizes data movement when nodes are added or removed, forming the backbone of distributed caches, sharded databases, a…
Cheat Sheets(2)
Data Structures Cheat Sheet
Summarizes core linear and non-linear data structures, their time complexities, and example implementations of stacks, queues, and hash tables.
Database Sharding Cheat Sheet
Covers horizontal partitioning strategies, shard key selection, routing, and rebalancing for scaling databases across multiple nodes.