scala - 如何测量 Cats IO 效果中的耗时?

我想测量 IO 容器内耗时。使用普通调用或 future 相对容易(例如下面的代码)

class MonitoringComponentSpec extends FunSuite with Matchers with ScalaFutures {

  import scala.concurrent.ExecutionContext.Implicits.global

  def meter[T](future: Future[T]): Future[T] = {
    val start = System.currentTimeMillis()
    future.onComplete(_ => println(s"Elapsed ${System.currentTimeMillis() - start}ms"))
    future
  }

  def call(): Future[String] = Future {
    Thread.sleep(500)
    "hello"
  }

  test("metered call") {
    whenReady(meter(call()), timeout(Span(550, Milliseconds))) { s =>
      s should be("hello")
    }
  }
}

但不确定如何包装 IO 调用

  def io_meter[T](effect: IO[T]): IO[T] = {
    val start = System.currentTimeMillis()
    ???
  }

  def io_call(): IO[String] = IO.pure {
    Thread.sleep(500)
    "hello"
  }

  test("metered io call") {
    whenReady(meter(call()), timeout(Span(550, Milliseconds))) { s =>
      s should be("hello")
    }
  }

谢谢!

最佳答案

猫效应有一个 Clock允许纯时间测量的实现,以及在您只想模拟时间流逝时注入(inject)您自己的实现以进行测试。他们文档中的示例是:

def measure[F[_], A](fa: F[A])
  (implicit F: Sync[F], clock: Clock[F]): F[(A, Long)] = {

  for {
    start  <- clock.monotonic(MILLISECONDS)
    result <- fa
    finish <- clock.monotonic(MILLISECONDS)
  } yield (result, finish - start)
}

https://stackoverflow.com/questions/54830287/

相关文章:

haskell - 了解如何应用 haskell 应用仿函数

r - 你能在 RMarkdown 中左对齐或加粗 Kable 的表格/图形标题吗?

spring-boot - 如何将base64转换为java中的MultipartFile

r - 从分布到置信区间的寓言

angular - NgRx - 从后端获取错误验证并传递给组件

django - 从 Django 模型中的选择中获取人类可读名称的实际值

python - 无法安装 Python secret 包

c++ - 为什么 mersenne_twister_engine 保证某些结果?

r - 无法安装 tidyverse

arrays - Julia - 许多分配以浏览结构中的数组