我有一个简单的服务器(下面)。我可以使用cell_tracer:start_link()
创建服务器,这有效;我知道这一点,因为当我重复相同的调用时,我收到already_started
错误。问题是在创建服务器之后,使用cell_tracker:get_cells()
(或执行任何gen_server:call(...)
)会导致服务器退出时出现如下异常:
** exception exit: {noproc,{gen_server,call,[cell_tracker,get_cells]}}
in function gen_server:call/2 (gen_server.erl, line 180)
我可以直接调用handle_call(get_cells...)
,我会得到预期的结果。
我不确定这里发生了什么。它没有给我很多信息,我没有看到问题。我怎样才能进一步深入研究这个?
-module(cell_tracker).
-behavior(gen_server).
-export([start_link/0, stop/0]).
-export([add_cell/1, del_cell/1, get_cells/0]).
-export([init/1,
handle_cast/2,
handle_call/3,
terminate/2,
handle_info/2,
code_change/3]).
%% operational api
start_link() ->
gen_server:start_link({global, ?MODULE}, ?MODULE, [], []).
stop() ->
gen_server:cast(?MODULE, stop).
%% traking api
add_cell(Cell) ->
gen_server:call(?MODULE, { add_cell, Cell }).
del_cell(Cell) ->
gen_server:call(?MODULE, { del_cell, Cell }).
get_cells() ->
gen_server:call(?MODULE, get_cells).
%% gen_server callbacks
init(Coords) ->
{ok, Coords}.
handle_cast(stop, Coords) ->
{stop, normal, Coords}.
handle_call({add_cell, Cell}, _From, Cells) ->
{reply, ok, [Cell|Cells]};
handle_call({del_cell, Cell}, _From, Cells) ->
{reply, ok, Cells -- Cell};
handle_call(get_cells, _From, Cells) ->
{reply, Cells, Cells}.
terminate(unnormal, _State) -> ok.
handle_info(_,_) -> ok.
code_change(_,State,_) -> {ok, State}.
答案 0 :(得分:5)
在本地注册服务器
start_link() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
或者如果您注册{global, ?MODULE}
演员,请致电{global, ?MODULE}
请参阅gen_server
答案 1 :(得分:0)
我在使用python(2.7)和couchdb(2.1)时遇到了同样的问题。 关键是我没有id保存文件。这是一个例子
import couchdb
server = couchdb.Server('http://admin:PASSWORD@127.0.0.1:5984/')
db = server.create('numbers')
idd, revv = db.save({"taras":"vaskiv"})
之后我得到了这个例外
431 # Store cachable responses
ServerError: (500, (u'noproc', u'{gen_server,call,[couch_uuids,create]}'))
但是当我用id保存文档时,一切似乎都运行得很好。
idd, revv = db.save({"taras":"vaskiv", "_id": "55"})