mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-04-28 11:03:22 +02: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"))
|