I think using ets will still introduce similar side effects.
|
feedback
|
|
ETS is not garbage collected since it is stored in a heap outside of erlang processes. This means that when you put something into ets it is copied into it, and when you take it out, you get a copy in your process. Making lots of ets lookups can then lead to excess consing in your process (but this is only relevant for very high througputs). The process dictionary is garbage collected. It is stored in the process's own heap. So when you look things up in it you get a reference to the exact same value you put in it. The values stored in the process dictionary are not compacted. Both approaches are non-pure, i.e. they have side-effects. Yes it is bad, and yes it is not why we have both alternatives. | |||||||||
feedback
|
|
ETS more or less behaves as if the table was in a separate process and requests are messages sent to that process. While it is not implemented with processes that the properties of ETS are modeled like that. It is in fact possible to implement ETS with processes. This means that the side effect properties are consistent with the rest of Erlang. The process dictionary is like nothing else in Erlang and adding it was a big mistake. There is no reason to use the process dictionary instead of one of the process local dictionaries like dict or gb_trees. | |||||||||
feedback
|
|
Benefits of ETS over process dictionary are:
| |||
|
feedback
|
|
No doubt that ETS has much more functionality and is more sophisticated. But...
| |||
|
feedback
|