redis_wrapper 1.0.2
A simple wrapper for redis-dart that provides logging and manages a single redis connection as recommended by the author of redis-dart for maximum performance. Currently it relies on some modifications of redis-dart, when these are merged the dependencies are modified to the current upstream version.
Usage #
A simple usage example:
import 'package:redis/redis.dart';
import 'package:redis_wrapper/redis_wrapper.dart';
main() async {
final RedisWrapper redis = RedisWrapper();
// Use it for transactions
Transaction ta = await redis.multi();
ta.send_object(["SADD", "project_ids", 1]);
ta.send_object(["SADD", "project_ids", 2]);
if(await ta.exec() != "OK") {
print("Could not add id");
};
// Use it for commands
String result = await redis.send(["SMEMBERS", "project_ids"]);
// Close Connection
await redis.close();
}
1.0.2 #
- Improve Code Health
- Provide Example
1.0.1 #
- Initial version
import 'package:redis/redis.dart';
import 'package:redis_wrapper/redis_wrapper.dart';
main() async {
final RedisWrapper redis = RedisWrapper();
// Use it for transactions
Transaction ta = await redis.multi();
ta.send_object(["SADD", "project_ids", 1]);
ta.send_object(["SADD", "project_ids", 2]);
if(await ta.exec() != "OK") {
print("Could not add id");
};
// Use it for commands
String result = await redis.send(["SMEMBERS", "project_ids"]);
// Close Connection
await redis.close();
}
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
redis_wrapper: ^1.0.2
2. Install it
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter pub get
Alternatively, your editor might support pub get
or flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:redis_wrapper/redis_wrapper.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100
|
Overall:
Weighted score of the above.
[more]
|
50
|
We analyzed this package on Dec 9, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.6.1
- pana: 0.12.21
Health issues and suggestions
Document public APIs. (-1 points)
9 out of 9 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
Format lib/redis_wrapper.dart
.
Run dartfmt
to format lib/redis_wrapper.dart
.