有谁用过阿米吧的SmartThreadPool,可以分享一下使用经验吗?
我正在研究替代的 ThreadPool 实现,并找到了 Ami Bar 的 SmartThreadPool 实现。它看起来很有趣,所以我的问题是是否有人实际使用过它,如果是的话 - 请分享经验。
谢谢。
PS
我们的线程使用情况与 Ami Bar 描述的最佳线程使用情况相符 - 许多线程长时间执行 I/O。
顺便说一句,如果还有其他有趣的 ThreadPool 实现,我也有兴趣了解它们。 (我也知道 Stephen Toub 的实现)。
I am looking into alternative ThreadPool implementations and have found the SmartThreadPool implementation by Ami Bar. It looks very interesting, so my question is whether anyone has actually used it and if so - please share the experience.
Thanks.
P.S.
Our thread usage matches the one described as optimal by Ami Bar - many threads doing I/O for long period of time.
BTW, if there are other interesting ThreadPool implementations, I am interested to hear about them as well. (I am also aware of the Stephen Toub's implementation).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 ASP.NET
IHttpAsyncHandler
中使用它来限制下载带宽,并且运行良好。I used it in an ASP.NET
IHttpAsyncHandler
for download bandwidth throttling and just worked fine.