ra1u / redis-dart

fast redis protocol parser and client
MIT License
84 stars 35 forks source link

Whether to support ssl connection #87

Closed HG9558 closed 11 months ago

HG9558 commented 11 months ago

I'm not sure whether this library supports redis's ssl connection method

HG9558 commented 11 months ago

void main() async { final conn = RedisConnection(); conn.connectSecure('52.196.177.102', 6379).then((Command command) { command.send_object(["AUTH", "default", "djckeid123"]).then((var response) { print('main.dart文件 8==============行打印=$response'); command.send_object(["SET", "key", "1"]).then((var response) => print(response)); }); });

runApp(const MyApp()); }