Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 
Konstantin Lebedev 21033ff4c3 refactor use const CountEntryChunksForGzip 4 лет назад
..
README.txt rename filer2 to filer 5 лет назад
cassandra_store.go refactor use const CountEntryChunksForGzip 4 лет назад
cassandra_store_kv.go ensure using local quorum consistency 4 лет назад

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);