4

我在带有 ets:select 的 erlang 中有一个奇怪的行为。

我实现了正确的选择语句(下面的 4 和 5),然后在我的语句中出错(下面的 6),然后我再次尝试与 4 和 5 中相同的语句,它不再起作用。

怎么了 ?任何的想法 ?

Erlang R14B01 (erts-5.8.2) [source] [smp:2:2] [rq:2] [async-threads:0] [kernel-poll:false]

Eshell V5.8.2  (abort with ^G)
1> Tab = ets:new(x, [private]).
16400
2> ets:insert(Tab, {c, "rhino"}).
true
3> ets:insert(Tab, {a, "lion"}). 
true
4> ets:select(Tab,[{{'$1','$2'},[],['$1', '$2']}]).      
["rhino","lion"]    
5> ets:select(Tab,[{{'$1','$2'},[],['$1', '$2']}]).      
["rhino","lion"]
6> ets:select(Tab,[{{'$1','$2'},[],['$1', '$2', '$3']}]).
** exception error: bad argument
 in function  ets:select/2
    called as ets:select(16400,[{{'$1','$2'},[],['$1','$2','$3']}])
7> ets:select(Tab,[{{'$1','$2'},[],['$1', '$2']}]).      
** exception error: bad argument
 in function  ets:select/2
    called as ets:select(16400,[{{'$1','$2'},[],['$1','$2']}])

我的ets表被破坏了吗?这会是 ets 的错误吗?

谢谢你。

4

2 回答 2

6

shell 进程创建了 ETS 表并且是它的所有者。当所有者进程死亡时,ETS 表将被自动删除。

因此,当您在 处遇到异常时6,shell 进程将终止,因此 ETS 表将被删除。

制作它private也意味着没有其他进程可以访问它(因此即使表被持久化,新的 shell 也无法访问它),但在这种情况下,由于表已被删除,情况会更糟。

于 2012-10-27T15:35:33.580 回答
3

(太大而不能作为对 thanosQR 正确答案的评论)

如果您希望表在 shell 中的异常中幸存下来,您可以将其交给另一个进程。例如:

1> Pid = spawn(fun () -> receive foo -> ok end end).    % sit and wait for 'foo' message
<0.62.0>
2> Tab = ets:new(x, [public]).                          % Tab must be public if you plan to give it away and still have access
24593
3> ets:give_away(Tab, Pid, []).
true
4> ets:insert(Tab, {a,1}).
true
5> ets:tab2list(Tab).
[{a,1}]
6> 3=4.
** exception error: no match of right hand side value 4
7> ets:tab2list(Tab).                                   % Tab survives exception
[{a,1}]
8> Pid ! foo.                                           % cause owning process to exit
foo
9> ets:tab2list(Tab).                                   % Tab is now gone
** exception error: bad argument
     in function  ets:match_object/2
        called as ets:match_object(24593,'_')
     in call from ets:tab2list/1 (ets.erl, line 323)
于 2012-10-27T21:45:31.843 回答