This commit is contained in:
bel
2021-09-12 22:16:11 -06:00
commit ceeb6f0385
129 changed files with 9221 additions and 0 deletions

2
sandbox/isFiringRedis/config Executable file
View File

@@ -0,0 +1,2 @@
save
appendonly no

BIN
sandbox/isFiringRedis/dump.rdb Executable file

Binary file not shown.

12
sandbox/isFiringRedis/main.py Executable file
View File

@@ -0,0 +1,12 @@
def main(args) :
import redis
redis = redis.Redis()
k = "key"
v = "value"
print(redis.get(k).decode())
redis.set(k, v)
print(redis.get(k).decode())
if __name__ == "__main__" :
from sys import argv
main(argv)