Skip to content

v0.0.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@ChristopherDavenport ChristopherDavenport released this 02 Aug 04:26
  • 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)