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

  1. package cassandra
  2. import (
  3. "context"
  4. "github.com/chrislusf/seaweedfs/weed/filer"
  5. )
  6. func (store *CassandraStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
  7. return filer.ErrKvNotImplemented
  8. }
  9. func (store *CassandraStore) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
  10. return nil, filer.ErrKvNotImplemented
  11. }
  12. func (store *CassandraStore) KvDelete(ctx context.Context, key []byte) (err error) {
  13. return filer.ErrKvNotImplemented
  14. }