Implement a Progressive Hashmap
Description
Currently the server uses C++ std::map to store the KV store. Your task is to implement a progressive hashmap that can dynamically adjust its structure or behavior based on usage patterns or size.
Provide a clear interface and ensure efficient operations for insertion, lookup, and deletion.
Contribution