Adding support for a second instance !

Redis cluster needs 6 hosts for work ... it's a lot.
To trick him each node can be Master and slave for another node.

;)
This commit is contained in:
2018-05-15 12:17:25 +02:00
parent 36b8982e25
commit 2031ec7d64
5 changed files with 1007 additions and 23 deletions

View File

@ -6,3 +6,6 @@
#
def add(num1, num2):
return str(int(num1) + int(num2)).decode("utf-8")
def intAdd(num1, num2):
return int(num1) + int(num2)