Documentation
¶
Index ¶
- type KVStorage
- type LogStorage
- func (l *LogStorage) Append(entry *pb.KVCommand) int
- func (l *LogStorage) AppendAt(pos int, entries []*pb.KVCommand)
- func (l *LogStorage) At(index int) *pb.KVCommand
- func (l *LogStorage) Close()
- func (l *LogStorage) CommitTo(idx int)
- func (l *LogStorage) Dump(writer io.Writer)
- func (l *LogStorage) Last() *pb.KVCommand
- func (l *LogStorage) LastIndex() int
- func (l *LogStorage) Slice(start, end int) []*pb.KVCommand
- func (l *LogStorage) String() string
- type MemKVStore
- type Persister
- type RocksBasedPersister
- type RocksDBStore
- type TableColumn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LogStorage ¶
type LogStorage struct {
// contains filtered or unexported fields
}
LogStorage A naive log storage, based on RocksDB. Support append and random read
func MakeLogStorage ¶
func MakeLogStorage(column *TableColumn) (*LogStorage, error)
func (*LogStorage) Close ¶
func (l *LogStorage) Close()
func (*LogStorage) Dump ¶
func (l *LogStorage) Dump(writer io.Writer)
func (*LogStorage) Last ¶
func (l *LogStorage) Last() *pb.KVCommand
func (*LogStorage) LastIndex ¶
func (l *LogStorage) LastIndex() int
func (*LogStorage) String ¶
func (l *LogStorage) String() string
type MemKVStore ¶
func MakeMemKVStore ¶
func MakeMemKVStore() *MemKVStore
func (*MemKVStore) Close ¶
func (s *MemKVStore) Close()
func (*MemKVStore) Put ¶
func (s *MemKVStore) Put(key, value string)
type Persister ¶
type Persister interface { LoadInt32(key string) (int32, bool) StoreInt32(key string, value int32) LoadInt64(key string) (int64, bool) StoreInt64(key string, value int64) }
Persister store persistent state in raft
type RocksBasedPersister ¶
type RocksBasedPersister struct {
// contains filtered or unexported fields
}
RocksBasedPersister a naive implementation, store key/value directly
func MakeRocksBasedPersister ¶
func MakeRocksBasedPersister(column *TableColumn) *RocksBasedPersister
func (*RocksBasedPersister) LoadInt32 ¶
func (p *RocksBasedPersister) LoadInt32(key string) (int32, bool)
func (*RocksBasedPersister) LoadInt64 ¶
func (p *RocksBasedPersister) LoadInt64(key string) (int64, bool)
func (*RocksBasedPersister) StoreInt32 ¶
func (p *RocksBasedPersister) StoreInt32(key string, value int32)
func (*RocksBasedPersister) StoreInt64 ¶
func (p *RocksBasedPersister) StoreInt64(key string, value int64)
type RocksDBStore ¶
type RocksDBStore struct {
// contains filtered or unexported fields
}
func MakeRocksDBStore ¶
func MakeRocksDBStore(column *TableColumn) (*RocksDBStore, error)
func (*RocksDBStore) Close ¶
func (s *RocksDBStore) Close()
func (*RocksDBStore) Put ¶
func (s *RocksDBStore) Put(key, value string)
type TableColumn ¶
type TableColumn struct {
// contains filtered or unexported fields
}
func MakeDBColumn ¶
func MakeDBColumn(db *gorocksdb.DB, cf *gorocksdb.ColumnFamilyHandle, column string) *TableColumn
func (*TableColumn) Put ¶
func (c *TableColumn) Put(key, value string)
func (*TableColumn) PutBytes ¶
func (c *TableColumn) PutBytes(key, value []byte)
func (*TableColumn) String ¶
func (c *TableColumn) String() string
Click to show internal directories.
Click to hide internal directories.