Skip to content

Latest commit

 

History

History

ostep-kv-store

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Simple Key-Value Store

Description

How to compile

gcc -o kv kv.c hashmap.c hashmap.h -Wall

Examples

./kv p,key1,value1 p,key2,value2 p,key3,value3
./kv g,key3

TODO

  • Reimplement the hashmap with a linked list
  • Use Valgrind to SOLVE the memory leaks