Elixir + gRPC: the road to production  

原文发表在 Tubi 的 Medium 账号上,点击标题查看原文。

 
8
Kudos
 
8
Kudos

Now read this

How does Plug work with Cowboy?

Plug的文档里有个通过Plug写应用程序的简单例子: defmodule MyPlug do import Plug.Conn def init(options) do # initialize options options end def call(conn, _opts) do conn |> put_resp_content_type("text/plain") |> send_resp(200, "Hello world") end end #... Continue →