Are there different process types than the standard Erlang processes?

There’s only one kind of process and they all have the same basic footprint.

The stuff about the timer module refers to all of its timers being handled by a single process (the timer server), which can become a bottleneck in large systems. There’s nothing special about this process per se, it’s just an ordinary process that the module spawns to handle its timers.

3 Likes