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
klevdb is a fast message store, written in Go. Think single partition on kafka, but stored locally.
7
+
klevdb is a fast message store, written in Go. Think single partition on Kafka, but stored locally.
8
8
9
-
In addition to basic consuming by offset, you can also configure klevdb to index times and keys. Times index allow you to quickly find a message by its time (or the first message after a certain time). Keys index allow you to quickly find the last message with a given key.
9
+
In addition to basic consuming by offset, you can also configure klevdb to index times and keys. Time indexes allow you to quickly find a message by its time (or the first message after a certain time). Key indexes allow you to quickly find the last message with a given key.
10
10
11
11
## Usage
12
12
@@ -22,6 +22,8 @@ To use klevdb:
22
22
package main
23
23
24
24
import (
25
+
"fmt"
26
+
25
27
"github.com/klev-dev/klevdb"
26
28
)
27
29
@@ -93,7 +95,7 @@ ok github.com/klev-dev/klevdb 12.433s
93
95
With default rollover of 1MB, for messages with keys 10B and values 128B:
0 commit comments