[erlang-questions] process dictionary, anyone?
Ulf Wiger (TN/EAB)
ulf.wiger@REDACTED
Mon Apr 23 17:24:28 CEST 2007
Each self-respecting Erlang hacker should bash the
process dictionary now and again. I've made it a sport to
claim that it is no worse than ets.
Considering SMP Erlang, isn't it even significantly better?
I haven't experimented with the process dictionary on
SMP machines, but it is process local, and can only be
written to by the process, so it should require much less
locking than ets, right?
A drawback with the process dictionary, compared to
ets, is that it has no support for match operations (other
than get() and get_keys()). When inspecting it from another
process (which is good for debugging purposes), it only
allows you to retrieve the entire dictionary.
Both these drawbacks could be easily corrected - at least
the second one.
BR,
Ulf W
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20070423/a0c8f7e0/attachment.htm>
More information about the erlang-questions
mailing list