mitch donaberger b64ada08bd Initial mirror from https://github.com/seaweedfs/seaweedfs.git há 3 meses atrás
..
README.txt b64ada08bd Initial mirror from https://github.com/seaweedfs/seaweedfs.git há 3 meses atrás
cassandra_store.go b64ada08bd Initial mirror from https://github.com/seaweedfs/seaweedfs.git há 3 meses atrás
cassandra_store_kv.go b64ada08bd Initial mirror from https://github.com/seaweedfs/seaweedfs.git há 3 meses atrás

README.txt

1. create a keyspace

CREATE KEYSPACE seaweedfs WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 1};

2. create filemeta table

USE seaweedfs;

CREATE TABLE filemeta (
dirhash bigint,
directory varchar,
name varchar,
meta blob,
PRIMARY KEY ((dirhash, directory), name)
) WITH CLUSTERING ORDER BY (name ASC);