我正在尝试开始使用http4s,并且我正在寻找avro编码器,该编码器可以像jsonEncoders一样向avro编码实体/从avro编码/解码实体:
import org.http4s.circe._
import io.circe.generic.auto._
implicit def tweetEncoder: EntityEncoder[IO, Tweet] = jsonEncoderOf[IO, Tweet]
.... build.sbt
"org.http4s" %% "http4s-circe" % http4sVersion,
"io.circe" %% "circe-generic" % "0.9.0"
赞赏有关如何使用http4s使用avro的意见。