From 74b161fdb207f9bf4f09eb1eeb1c50204f43ac50 Mon Sep 17 00:00:00 2001 From: Triet Pham Date: Wed, 31 Aug 2016 10:20:16 +0700 Subject: [PATCH] Add Cassandra url format --- driver/cassandra/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/driver/cassandra/README.md b/driver/cassandra/README.md index 6959606..75315bf 100644 --- a/driver/cassandra/README.md +++ b/driver/cassandra/README.md @@ -8,8 +8,13 @@ migrate -url cassandra://host:port/keyspace -path ./db/migrations up migrate help # for more info ``` +Url format +- Authentication: `cassandra://username:password@host:port/keyspace` +- Cassandra v3.x: `cassandra://host:port/keyspace?protocol=4` + + ## Authors * Paul Bergeron, https://github.com/dinedal * Johnny Bergström, https://github.com/balboah -* pateld982, http://github.com/pateld982 \ No newline at end of file +* pateld982, http://github.com/pateld982