darkredis : A Redis client based on std::future and async_await
darkredis is a Redis client for Rust written using the new std::future and async_await. It's designed to be easy to use, and lacks advanced features. Requires rust 1.39.0 or newer.
Currently not all Redis commands have convenience functions, and there may be ergonomic improvements to make.
NOTE
As of version 0.8.0, darkredis is no longer maintained.
Why?
When darkredis was originally written, it was part of an async project. At the time, there was no real way to use .await with redis-rs, so I set out to change that. The result is darkredis, and it has worked very well for my own personal use, which it might for you too. It's designed to be as simple as possible, serving as an easy way to call redis commands.
Cargo features
runtime_tokio(on by default): Use the tokio 0.2 runtime and Tcp primitives. Requires a running tokio 0.2 runtime.runtime_async_std: Useasync-stdinstead of tokio, using it's runtime instead of tokio. Is mutually exclusive with theruntime_tokiofeature.
Getting started
- Add
darkredisand to yourCargo.toml. - Create an async context somehow, for instance by using
tokio0.2. - Create a
ConnectionPooland grab a connection!
use ConnectionPool;
async
Changelog
0.8.0
Breaking changes
- Update tokio to 1.0
- Update dependencies
- Move away from futures mutexes to async-std/tokio mutexes.
NOTE:
This is likely to be the last release. Don't expect any updates.
0.7.0
Breaking changes
- Change the blpop and brpop commands to return a tuple instead an unnecesarry vector.
- Added new error variant: EmptySlice
del,saddnow returnbool.
Changes
- Properly parse nested arrays.
- Convenience functions now return an error if a given slice is empty.
Additions
- Add support for SCAN, SSCAN and HSCAN.
- Convenience function for the TYPE command.
- Add convenience functions for all set commands.
0.6.0
Breaking changes
- Change
run_commandsto return a stream. - Rename
runtime_agnosticfeature toruntime_async_std - Split
Connection::connectinto one which authenticates and one which doesn't. - Connection password now takes
AsRef<[u8]>instead of forcing a string. - Remove deprecated function
set_with_expiry - Change
MSETto use the newMSetBuilderstruct
Additions
- Hashmap convenience functions
- Add some convenience functions for sets
- Allow running commands using a pre-allocated serialization buffer
- Most types now implement
Debug
0.5.2
- Improve serialization performance by 50%! 🎉
- Add benchmarks
0.5.1
- Add blpop and brpop
0.5.0
- Update to tokio 0.2.3 and async-std 1.2.0
- Add expiry commands
- Connection: deprecate
set_with_expiry, useset_and_expire_secondsandset_and_expire_msinstead.
0.4.1
- Updated to async-std 1.0.1 and futures 0.3.1
0.4.0
- (BREAKING) Add the
runtime_agnosticandruntime_tokiofeatures. - Simple Pubsub support using the
MessageStreamandPMessageStreamtypes. - Ability to spawn a new connection using the settings from a ConnectionPool
- Use
tokioin test mode. - Add convenience function for
PUBLISH - Add pubsub example
- Add variants of builder functions for
CommandandCommandListwhich mutate the object instead of moving it.
0.3.1
- Expclicitly use traits from
async-std, notstd. This fixes compilation on async-std 0.99.5
0.3.0
- Add convenience functions for the
INCRandDECRfamily of commands, as well as forAPPEND,MGET,MSET,EXISTS. - Improve the documentation of convenience functions
- Allow renaming of client connections in connection pools
0.2.3
- Use
async-stdinstead ofruntimefor TcpStream, allowing using darkredis with any runtime.
0.2.2
- Update dependencies
0.2.1
- Fix compilation error on latest nightly
0.2.0
- Command and CommandList no longer perform any copies
- Added args method to Command and CommandList
lpushandrpushnow take multiple arguments- Support password auth
lrangeno longer returns an Option, returns an empty vec instead.- Add convenience functions for the following commands:
lset,ltrim
0.1.3
- Remove unnecesarry generic parameter from lpop and rpop methods.
0.1.2
- Fix a couple documentation errors
0.1.1
- Initial release
Testing
If you're hacking on darkredis and want to run the tests, make sure you have a Redis instance running on your local machine on port 6379. The tests clean up any keys set by themselves, unless the test fails. Please submit an issue if it does not.
Also, make sure to run the tests using both the runtime_tokio and runtime_async_std features, to make sure that it works.