- WAL package now can notify observers when it writes entries - WAL can retrieve entries by sequence number - WAL implements file retention management - Add replication protocol defined using protobufs - Implemented compression support for zstd and snappy - State machine for replication added - Batch management for streaming from the WAL
19 lines
463 B
Modula-2
19 lines
463 B
Modula-2
module github.com/KevoDB/kevo
|
|
|
|
go 1.24.2
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.3.0
|
|
github.com/chzyer/readline v1.5.1
|
|
google.golang.org/grpc v1.72.0
|
|
google.golang.org/protobuf v1.36.6
|
|
)
|
|
|
|
require (
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
|
golang.org/x/net v0.38.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
|
|
)
|