1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00

Fix mismatched key casing. (#12)

This commit is contained in:
Jesse Donat 2019-06-11 16:29:11 -05:00 committed by James Mills
parent c4faac9f7c
commit 9fafcad9a6

View File

@ -71,7 +71,7 @@ func main() {
db, _ := bitcask.Open("/tmp/db")
defer db.Close()
db.Put("Hello", []byte("World"))
val, _ := db.Get("hello")
val, _ := db.Get("Hello")
}
```