Last active
February 29, 2016 18:42
-
-
Save FGRibreau/3c524cb57f24c460716e to your computer and use it in GitHub Desktop.
Give a try to ScyllaDB (Cassandra in C++, ~10x faster) with two lines of docker http://blog.fgribreau.com/2016/02/give-try-and-bench-scylladb-cassandra.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# start in one terminal scylla | |
docker run --rm -P -i -t --name=scylla scylladb/scylla | |
# start in another terminal cassandra-stress test | |
docker run --link scylla -it --rm joprice/scylla-tools cassandra-stress write -mode cql3 native -node $(docker inspect -f '{{ .NetworkSettings.IPAddress }}' scylla) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment