Finished index with its tests.

This commit is contained in:
Mariano Uvalle 2021-08-03 22:56:25 -05:00
parent 093422a2f9
commit 525abb53fd
3 changed files with 166 additions and 0 deletions

9
internal/log/config.go Normal file
View file

@ -0,0 +1,9 @@
package log
type Config struct {
Segment struct {
MaxStoreBytes uint64
MaxIndexBytes uint64
InitialOffset uint64
}
}