mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
7 lines
253 B
Go
7 lines
253 B
Go
package index
|
|
|
|
type Storage interface {
|
|
Fetch(bitmap_id uint64, db string, slice int) IBitmap
|
|
Store(id int64, db string, slice int, bitmap *Bitmap) error
|
|
StoreBlock(id int64, db string, slice int, chunk int64, block_index int32, block int64) error
|
|
}
|