You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Fatalf("Error trying to put value at key: %v", key)
49
+
}
50
+
51
+
pair, err:= kv.Get(ctx, key, nil)
52
+
if err != nil {
53
+
log.Fatalf("Error trying accessing value at key: %v", key)
54
+
}
55
+
56
+
log.Printf("value: %s", string(pair.Value))
57
+
58
+
err = kv.Delete(ctx, key)
59
+
if err != nil {
60
+
log.Fatalf("Error trying to delete key %v", key)
61
+
}
62
+
}
63
+
```
64
+
19
65
## Compatibility
20
66
21
67
A **storage backend** in `valkeyrie` implements (fully or partially) the [Store](https://github.com/kvtools/valkeyrie/blob/master/store/store.go#L69) interface.
0 commit comments