gpt4 book ai didi

function - 如何从 Elixir GenServer 处理程序中调用其他函数?

转载 作者:行者123 更新时间:2023-12-05 08:33:27 26 4
gpt4 key购买 nike

我有一个为单个项目实现功能的 GenServer,例如:

def handle_call({:sync, id}, _from, state) do
## update data
{:reply, data, sync}
end

现在我想为多个 id 处理这个功能,例如:

def handle_call({:sync_all, ids}, _from, state) do
## call sync for each id
data = Enum.map(ids, fn(id) ->
GenServer.call(self(), {:sync, id})
end)
## Further reduce down data to stats
{:reply, data, sync}
end

然而,这并不能告诉我进程试图调用自己。

我认为这一定是由于 call 的阻塞性质造成的。但是,如果我在 sync_all 版本中使用 cast,也会发生同样的情况。

所以我的问题是:如何从 handle_callhandle_cast 函数中调用其他 GenServer 任务?

最佳答案

在这种情况下,您通常会做的是将通用逻辑提取到一个单独的函数中:

def handle_call({:sync, id}, _from, state) do
{data, state} = do_sync(id, state)
{:reply, data, state}
end

def handle_call({:sync_all, ids}, _from, state) do
{data, state} = Enum.map_reduce(ids, state, &do_sync/2)
{:reply, data, state}
end

defp do_sync(id, state) do
# do something
{data, new_state}
end

关于function - 如何从 Elixir GenServer 处理程序中调用其他函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40221918/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com