获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
前端直连数据库,这么勇的吗?
在微信小程序上支持自己连接公司后台的redis吗const redis = require("redis"); const client = createClient({ url: "redis://47.110.39.170:6380" }); const client = redis.createClient("6380", "47.110.39.170"); client.subscribe('test'); // 监听消息 client.on('message', function(channel,msg){ console.log(channel + ':' + msg) });
2022-07-12