Chris Lu a4063a5437 add stream list directory entries 3 years ago
..
README.txt eb7929a971 rename filer2 to filer 4 years ago
cassandra_store.go a4063a5437 add stream list directory entries 3 years ago
cassandra_store_kv.go 68d39c86f1 mysql, postgres, cassandra: change kv key to base64 encoding 3 years 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);