chrislu 70a4c98b00 refactor filer_pb.Entry and filer.Entry to use GetChunks() 1 year ago
..
README.txt eb7929a971 rename filer2 to filer 3 years ago
cassandra_store.go 70a4c98b00 refactor filer_pb.Entry and filer.Entry to use GetChunks() 1 year ago
cassandra_store_kv.go 26dbc6c905 move to https://github.com/seaweedfs/seaweedfs 1 year ago

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 (
directory varchar,
name varchar,
meta blob,
PRIMARY KEY (directory, name)
) WITH CLUSTERING ORDER BY (name ASC);