Replies: 1 comment 1 reply
-
How about this as from Readme import 'package:redis/redis.dart';
void main() {
final conn = RedisConnection();
conn.connect('localhost', 6379).then((Command command){
command.send_object(["SET","key","0"]).then((var response)
print(response);
)
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would you please create an example, maybe a complete main.dart file? I don't understand the syntax, so unfortunately I can't manage to connect to a Redis server.
Beta Was this translation helpful? Give feedback.
All reactions