You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importasyncrd# connect to redisdb=awaitasyncrd.connect("redis://localhost")
# get stuffdata=awaitdb.get("test")
# print resultprint(data)
# close connectionawaitdb.close()