redis_dart
A simple and minimalist Redis client for Dart
Usage
Easy to use
This library was meant to be clear and easy to understand, so the methods names are associated to what the function does, like
which returns a Map
and then prints
{name: John Doe, email: john@doe.com, age: 34}
That way, inserting a Redis Hash is as simple as passing a Dart Map
.
API
For full API documentation take a look at https://pub.dev/documentation/redis_dart/latest/
Also, check out the examples
directory.