未验证 提交 0e731ebd 编写于 作者: D Dejan Mijić 提交者: GitHub

Upgrade rediculous to 0.0.7 (#116)

上级 7c2eb6bf
......@@ -41,8 +41,6 @@ class PutBenchmarks {
@Benchmark
def rediculous(): Unit = {
import java.net.InetSocketAddress
import cats.effect._
import cats.implicits._
import fs2.io.tcp._
......@@ -52,7 +50,7 @@ class PutBenchmarks {
for {
blocker <- Blocker[IO]
sg <- SocketGroup[IO](blocker)
c <- RedisConnection.queued[IO](sg, new InetSocketAddress(RedisHost, RedisPort), maxQueued = 10000, workers = 2)
c <- RedisConnection.queued[IO](sg, RedisHost, RedisPort, maxQueued = 10000, workers = 2)
} yield c
connection
......
......@@ -63,7 +63,7 @@ lazy val benchmarks =
skip in publish := true,
libraryDependencies ++= Seq(
"dev.profunktor" %% "redis4cats-effects" % "0.10.2",
"io.chrisdavenport" %% "rediculous" % "0.0.5",
"io.chrisdavenport" %% "rediculous" % "0.0.7",
"io.laserdisc" %% "laserdisc-fs2" % "0.4.0"
),
scalacOptions in Compile := Seq(
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册