You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
479 B
18 lines
479 B
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
|
|
}
|