mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
7 lines
121 B
Python
7 lines
121 B
Python
from php import redis
|
|
|
|
db = redis.Redis()
|
|
db.connect("127.0.0.1", 6379, -1)
|
|
db.set("key", "swoole")
|
|
print(db.get("key"))
|