Skip to content

Instantly share code, notes, and snippets.

View olbboy's full-sized avatar
💭
🏆

mds olbboy

💭
🏆
View GitHub Profile
@olbboy
olbboy / 1. Install Redis
Created December 22, 2017 21:31 — forked from pbolduc/1. Install Redis
Install redis on CentOS 7
# see How to Install Redis Server on CentOS 7 - http://linoxide.com/storage/install-redis-server-centos-7/
# --- Compiling ---
$ yum install gcc make tcl
$ REDIS_VER=3.2.3
$ wget http://download.redis.io/releases/redis-$REDIS_VER.tar.gz
$ tar xzvf redis-$REDIS_VER.tar.gz
$ cd redis-$REDIS_VER
$ make
$ make test
@olbboy
olbboy / introrx.md
Created July 7, 2016 22:17 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing