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