6 lines
150 B
Python
6 lines
150 B
Python
|
|
import redis
|
||
|
|
|
||
|
|
r = redis.Redis(host="localhost", port=6379, decode_responses=True)
|
||
|
|
r.set("teste", "funcionando")
|
||
|
|
print("Redis disse:", r.get("teste"))
|