Implementing Redis in C++ : C
Custom hash table implementation with incremental rehashing, FNV hash algorithm, and intrusive data structures for Redis-like storage.
Read moreMarkdown to HTML
A tiny, fast Markdown blog for GitHub Pages.
Fresh notes generated from your Markdown folder.
Custom hash table implementation with incremental rehashing, FNV hash algorithm, and intrusive data structures for Redis-like storage.
Read moreImplementing TLV (Type-Length-Value) protocol format with multiple data types (nil, error, string, int, double, array) for Redis-like communication.
Read moreDetailed implementation of AVL tree with rotation operations, balancing algorithms, and deletion strategies for ordered data structures.
Read moreImplementing Redis-like sorted set commands (zadd, zrem, zscore, zquery) with AVL tree and hash map integration.
Read moreImplementing Redis-like list commands (lpush, lpop, rpush, rpop) with doubly linked list and hash map integration.
Read moreImplementing Redis-like hash commands (hget, hset, hdel) with hash map integration and data structure extensions.
Read more