Skip to content

Instantly share code, notes, and snippets.

@hdiedrich
hdiedrich / gist:5415065
Last active December 16, 2015 09:48
Try Erlvolt and VoltDB in 4 Lines

Giving Erlvolt and VoltDB a whirl takes seconds, i.e. copy pasting these four lines. 9 minutes 20 seconds including all reading, downloading and building:

  git clone -b voltdb-3.7.0.5 https://github.com/VoltDB/voltdb.git voltdb  
  git clone https://github.com/Eonblast/Erlvolt.git erlvolt  
  cd voltdb && ant && cd examples/voter && ./run.sh &  
  cd erlvolt && make profile bench  

Once you ran the first line above, i.e. started cloning VoltDB why not read the following while waiting for the dl:

@hdiedrich
hdiedrich / install-r15b01.sh
Created June 12, 2012 13:59 — forked from rkmax/install-r15b.sh
Script to install Erlang R15B01 (tested on a fresh Ubuntu 12.04 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get update
apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk
mkdir -p /src/erlang
cd /src/erlang
wget http://www.erlang.org/download/otp_src_R15B01.tar.gz
tar -xvzf otp_src_R15B01.tar.gz
chmod -R 777 otp_src_R15B01
cd otp_src_R15B01
./configure