mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 04:57:24 +08:00
filer store adds kv support
can compile now, need to implement those unimplemented
This commit is contained in:
18
weed/filer/cassandra/cassandra_store_kv.go
Normal file
18
weed/filer/cassandra/cassandra_store_kv.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package cassandra
|
||||
|
||||
import (
|
||||
"context"
|
||||
"github.com/chrislusf/seaweedfs/weed/filer"
|
||||
)
|
||||
|
||||
func (store *CassandraStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
||||
return filer.ErrKvNotImplemented
|
||||
}
|
||||
|
||||
func (store *CassandraStore) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
|
||||
return nil, filer.ErrKvNotImplemented
|
||||
}
|
||||
|
||||
func (store *CassandraStore) KvDelete(ctx context.Context, key []byte) (err error) {
|
||||
return filer.ErrKvNotImplemented
|
||||
}
|
Reference in New Issue
Block a user