redlock 1.0.0

Implementation of the distributed locking mechanism built on top of Redis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: start test stop

start:
	redis-server --save "" --port 6380 &
	redis-server --save "" --port 6381 &
	redis-server --save "" --port 6382 &

stop:
	redis-cli -p 6380 shutdown nosave
	redis-cli -p 6381 shutdown nosave
	redis-cli -p 6382 shutdown nosave

test:
	cargo test