- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是Erlang的菜鸟,懒得写spider的代码了:
-module(http).
-compile([export_all]).
init() ->
ssl:start(),
inets:start(),
register(m, spawn(fun() -> loop() end)),
register(fetch, spawn(fun() -> x() end)),
ok.
start() ->
L1 = [114689,114688,114691,114690], % detail page id
lists:map(fun(Gid) ->
io:format("~p ~n", [Gid]),
fetch ! {go, Gid}
end, L1),
m ! done,
done.
main(_) ->
init(),
start().
loop() ->
io:fwrite("this is in loop!!"),
receive
{no_res, Gid} ->
io:format("~p no res ! ~n", [Gid]),
loop();
{have_res, Gid} ->
io:format("~p have res ! ~n", [Gid]),
loop();
done ->
io:format("wowowow", [])
end.
x() ->
receive
{go, Gid} ->
http_post(Gid);
_ ->
ready
end.
http_post(Gid) ->
URL = "https://example.com", % url demo
Type = "application/json",
ReqArr = ["[{\"id\": \"", integer_to_list(Gid), "\"}]"],
ReqBody = string:join(ReqArr, ""),
case httpc:request(post, {URL, [], Type, ReqBody}, [], []) of
{ok, {_, _, ResBody}} ->
if
length(ResBody) =:= 0 ->
io:format("Y: ~p ~n", [Gid]);
m ! {no_res, Gid};
true ->
io:format("N: ~p ~n", [Gid])
m ! {have_res, Gid}
end;
{error, Reason} ->
io:format("error cause ~p~n", [Reason]);
_ ->
io:format("error cause ~n", [])
end.
L1
,怎么解决?产生几十个 Actor ?如果是,您如何决定 receive
的 Actor ?哪个身份证? 最佳答案
1) 而不是在 loop()
周围包装匿名函数:
register(m, spawn(fun() -> loop() end)),
register(m, spawn(?MODULE, loop, []) ),
register(fetch, spawn(fun() -> x() end)),
escript -c myscript.erl
main/1
的进程您定义的功能。您的
main/1
函数如下所示:
main(_) ->
init(),
start().
init()
函数不循环,所以它在它调用的所有函数返回后结束,即
ssl:start()
,
inets:start()
,
register()
.您的
start()
函数也不循环,所以在
start()
之后返回,然后
main()
返回并且因为执行
main()
的进程函数无事可做,它结束了。
How I solve this problem ?
main(_) ->
init(),
loop().
init()
看起来像这样:
init() ->
ssl:start(),
inets:start(),
register(loop, self()),
ok.
start()
产生发布请求:
start() ->
L1 = [114689,114688,114691,114690], % detail page id
lists:foreach(fun(Gid) ->
io:format("~p ~n", [Gid]),
spawn(?MODULE, http_post, [Gid])
end, L1).
%First line cannot have erlang code.
main(_) ->
init(),
start().
init() ->
ssl:start(),
inets:start().
start() ->
L1 = [1, 2, 3, 4],
Self = self(),
Pids = lists:map(fun(Gid) ->
Pid = spawn(fun() -> http_post(Gid, Self) end),
io:format("Spawned process with Gid=~w, Pid=~w~n", [Gid, Pid]),
Pid
end, L1),
io:format("Pids = ~w~n", [Pids]),
lists:foreach(
fun(Pid) ->
receive
{no_res, {Gid, Pid} } ->
io:format("no response! (Gid=~w, Pid=~w)~n", [Gid, Pid]);
{have_res, {Gid, Pid, Reply}} ->
io:format("got response: ~p~n(Gid=~w, Pid=~w)~n~n",
[Reply, Gid, Pid]);
{Pid, Gid, Error} ->
io:format("Error:~n(Gid=~w, Pid=~w)~n~p~n", [Gid, Pid, Error])
end
end, Pids).
http_post(Gid, Pid) ->
URL = "http://localhost:8000/cgi-bin/read_json.py", % url demo
Type = "application/json",
ReqArr = ["[{\"id\": \"", integer_to_list(Gid), "\"}]"],
ReqBody = string:join(ReqArr, ""),
case httpc:request(post, {URL, [], Type, ReqBody}, [], []) of
{ok, {_, _, ResBody}} ->
if
length(ResBody) =:= 0 ->
io:format("Y: ~p ~n", [Gid]),
Reply = {no_res, {Gid, self()} },
Pid ! Reply;
true ->
io:format("N: ~p ~n", [Gid]),
Reply = {have_res, {Gid, self(), ResBody} },
Pid ! Reply
end;
{error, _Reason}=Error ->
Pid ! {Gid, self(), Error};
Other ->
Pid ! {Gid, self(), Other}
end.
If I have tens of thousands of id in L1 , how solve?
关于erlang - 一个二郎 Actor 小演示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59398977/
我想实现一个 Erlang 解释器,最近我在阅读 Erlang 的标准库源代码。我在 erlang.erl 中找到 erlang:display/1 的源代码是: %% display/1 -spec
我即将用 Erlang 构建一个系统(我的问题可以用多个 CPU 更好地解决),我已经浏览了: 向你学习一些 Erlang; Erlang/OTP 在行动 编程 Erlang(阿姆斯壮); Erlan
我真的很难理解 Erlang 中的尾递归。 我有以下 eunit 测试: db_write_many_test() -> Db = db:new(), Db1 = db:write(f
我不确定或者我不知道 erlang 定位不在默认目录中的模块的传统方式。我知道它会查看已编译的文件夹和 erlang 的系统文件夹或 - lists:foreach(fun (E) -> io:fwr
对 Erlang 完全陌生。我正在尝试为函数组合定义一些函数,例如 compose , juxt和 pipe但是遇到这样一个事实,即 Erlang 没有(据我所知)可变参数,因此很难只编写适用于所有输
在 Erlang 中存储和管理高性能可变对象的最佳方法是什么?假设我想编写具有实时游戏玩法的非常简单的在线游戏服务器。不知何故,我需要在 Erlang 内存中表示玩家的状态。例如,它可能只是一个简单的
警告:前面的 erlang n00b。 我正在尝试掌握 erlang,只是尝试与牛仔一起使用基本的 hello world 应用程序。我正在模拟一个错误,基本上是在我的代码中的某处返回一个无效值,并试
当你向 shell 进程发送消息时,你可以通过调用: c:flush(). 来清除所有消息。 C:\Windows\System32>erl Eshell V5.9(使用 ^G 中止) 1> 自我()
这应该是一个简单的问题,但我不太了解文档,无法找到答案。 如果 OTP 管理器在崩溃后重新启动 gen_server,新子进程是否继承了崩溃进程的消息队列,或者消息是否在崩溃之前发送但尚未由旧子进程处
我将 net_ticktime 值设置为 600 秒。 net_kernel:set_net_ticktime(600) 在 net_ticktime = TickTime 的 Erlang 文档中:
我正在监视一个 Erlang 应用程序,我目前正在尝试确定特定 PID 已经运行了多长时间。绝对时间戳或持续时间对我有用,但我在 process_info 或通过 sys 模块看不到这些数据位中的任何
我想重新定义查找特定单词的元组的顺序 例如,我有一个像这样的元组列表: [{"a",["r001"]}, {"bi",["bidder"]}, {"bo",["an"]}] 但有时元组的顺序可能会
以下几行出现在 http://aosabook.org/en/riak.html 中,在该部分的第二段: 15.1. Erlang 简介 : "Calling the function with a
我认为 Erlang 节点之间的消息不应该很大。如果我想构建一个流服务器,通常每个连接都需要很大的带宽,Erlang 能做好吗?如果是,是否有任何开源代码可供我学习?我了解到 Erlang 很适合处理
下一个代码在结果中给了我 5.999999999999998,但正确答案是 6。 Alpha = math:acos((4*4 + 5*5 - 3*3) / (2*4*5)) Area = 1/2 *
注意:这是我的 previous question 的进化延续。关于类似的话题。 一段时间以来,我一直在寻找有关部署和更新 Erlang/OTP 版本(一组应用程序)的“最佳实践”,但我找不到任何直接
我试图在头文件中指定一个函数。 像这样: -spec update(pid(), tuple(tuple(), integer(), atom()), tuple(atom(), atom())) -
所以我在过去的八个小时里一直在使用 Erlang,我花了两个时间用我的头敲击键盘试图找出我的控制台不断返回的异常错误。 我正在编写一个骰子程序来学习erlang。我希望它能够通过 erlang 解释器
当我编译以下模块时: -module(x). -export([inp/0]). f(X) -> g(X). g(X) -> error(X). inp() -> f(123)
我目前正在开发一个实时媒体服务器,它将允许普通消费者向我们发送实时视频。在我们当前的环境中,我们已经看到发送给我们的广播持续了几天,因此能够在不断开用户连接的情况下修复错误(或添加功能)的想法非常引人
我是一名优秀的程序员,十分优秀!