我想使用{:redix,“~>0.6.1”}hex包到我的聊天应用程序,并从监视树开始

{:ok, conn} = Redix.start_link()
{:ok, conn} = Redix.start_link(host: "example.com", port: 5000)
{:ok, conn} = Redix.start_link("redis://localhost:6379/3", name: :redix)


Redix.command(conn, ["SET", "mykey", "foo"])

但当我尝试将连接开始链接放到子进程时,它会出错
children = [
      # Start the Ecto repository
      supervisor(PhoenixChat.Repo, []),
      # Start the endpoint when the application starts
      supervisor(PhoenixChat.Endpoint, []),
      # Start your own worker by calling: PhoenixChat.Worker.start_link(arg1, arg2, arg3)
      # worker(PhoenixChat.Worker, [arg1, arg2, arg3]),
      supervisor(PhoenixChat.Presence, []),

      #supervisor(Phoenix.PubSub.Redis, [:chat_pubsub, host: "127.0.0.1"])
    ]

如何启动redix连接并将数据存储到redis?

最佳答案

您要做的是Register进程id。为此,通常可以在opts中指定其名称,如下所示:

worker(Redix, [[], [name: RedixConnection]])

当进程注册时,通常可以使用它的名称而不是pid(总是签入文档,但这是常见的模式),如下所示:
Redix.command(RedixConnection, ["PING"])

大多数情况下,一个连接是不够的。您可能想使用某种池机制,如poolboydocumentation中有一个非常整洁的页面供您阅读,称为Real-world usage。它可能会回答大多数与这个主题相关的问题。
也请考虑使用erlang/elixir内置解决方案。我不知道您的具体用例,但您可能想查看ets、dts和mnesia。

10-05 22:52