v0.0.1
Pre-release
Pre-release
- Initial Experimental Release
- A ton of simple commands, the more complex ones will come later
- Currently Supports Queued, Pooled, and Singular Connections. Queued is highly recommended and may end up the only connection type.
- Pattern is to Create the RedisConnection and pass it to where you need to use it.
- Best performance is to parMapN your redis monad creations, and run with the connection. Like
(
RedisCommands.ping[F],
RedisCommands.get[F]("foo"),
RedisCommands.set[F]("foo", "bar"),
RedisCommands.get[F]("foo")
).parTupled.run(redisConnection)