From 71a532b40f29b980dd4062a638c14f895623b99d Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Sun, 5 Sep 2021 12:37:01 -0500 Subject: [PATCH] links to rocks/leveldb --- initial-kv/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/initial-kv/README.md b/initial-kv/README.md index 86b1a72..a453d68 100644 --- a/initial-kv/README.md +++ b/initial-kv/README.md @@ -8,11 +8,13 @@ It also serves to get you into the mindset of a C programmer, something you will become quite familiar with over the next few months. Good luck! -You will write a simple program called `kv`. It is a simple persistent key-value store. -Key-value storage systems, like RocksDB from Facebook and LevelDB from -Google, are widely used in industry for various purposes; here, you -will write a simple one (or a complex one, who knows?) and remember -the basics of C and systems programming. +You will write a simple program called `kv`. It is a simple persistent +key-value store. Key-value storage systems, like +[RocksDB](http://rocksdb.org/) from Facebook and +[LevelDB](https://github.com/google/leveldb) from Google, are widely +used in industry for various purposes; here, you will write a simple +one (or a complex one, who knows?) and remember the basics of C and +systems programming. The program will have a few options. The first is to insert some (key, value) pairs into the database. This is accomplished as follows: