platform/packages/redis/example/main.dart

23 lines
595 B
Dart
Raw Normal View History

2018-10-21 18:12:54 +00:00
import 'package:angel_redis/angel_redis.dart';
import 'package:resp_client/resp_client.dart';
import 'package:resp_client/resp_commands.dart';
2018-10-21 18:08:24 +00:00
2018-10-21 18:12:54 +00:00
main() async {
var connection = await connectSocket('localhost');
var client = new RespClient(connection);
var service = new RedisService(new RespCommands(client), prefix: 'example');
// Create an object
await service.create({'id': 'a', 'hello': 'world'});
// Read it...
var read = await service.read('a');
print(read['hello']);
// Delete it.
await service.remove('a');
// Close the connection.
await connection.close();
}