Erlang进程队列最佳实践?
我构建了一个进程队列实现,它创建一个工作进程池,这些进程接收带有要处理的数据的有效负载消息。当该进程完成后,它会将消息发送回池,并且池管理器会将该进程 ID 重新排队以供使用。
我的问题是:放弃该进程并生成一个新进程是否更好?或者回收它?
I've built a process queue implementation that creates a pool of worker processes that receive a payload message with the datum to work on. When that process is done, it sends a message back to the pool and the pool manager re-enqueues that process ID for use.
My question is this: is it better to discard the process and just spawn a new one? Or recycle it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Erlang 中的进程构建极其是轻量级的。丢弃并创建一个新的。
Process construction in Erlang is extremely lightweight. Discard and create a new one.