-
c++线程池技术深入分析
目前的大多数网络服务器,包括Web服务器、Email服务器以及数据库服务器等都具有一个共同点,就是单位时间内必须处理数目巨大的连接请求,但处理时间却相对较短。线程池采用预创建的技术,在应用程序启动之后,将立即创建一定数量的线程(N1),放入空闲队列中。这些线程都是处于阻塞(Suspended)状态,不消耗CPU,但占用较小的内存空间。当任务到来后,缓冲池选择一个空闲线程,把任务传入此线程中运行。当N1个线程都在处理任务后,缓冲池自动创建一定数量的新线程,用于处理更多的任务。在任务执行完毕后线程也不退出,而是继续保持在池中等待下一次的任务。当系统比较空闲时,大部分线程都一直处于暂停状态,线程池自动销毁一部分线程,回收系统资源。从而显著提高了服务器的效率。
- 2022-07-23 20:13:06下载
- 积分:1
-
流媒体传输协议实现的代码,很有用的。和“彩信
流媒体传输协议的实现代码,非常有用.可以支持rtsp mms等流媒体传输协议-streaming media transmission protocol implemented code, very useful. And@mms-j.jp support RTSP streaming media such as transfer protocol
- 2022-02-28 19:08:56下载
- 积分:1
-
晕了,还要上传呀,真是的,下一点东西都这么麻烦~~,呜 ,又一PHP程序...
晕了,还要上传呀,真是的,下一点东西都这么麻烦~~,呜 ,又一PHP程序-dizzy, but also upload it, is really the point where things are so ~ ~ trouble, Woo, another PHP procedures
- 2022-03-15 04:13:48下载
- 积分:1
-
yo this is true I was the laughing stock of the Ha Ha
这个程序不错哟 这个是本人写的 哈哈 见笑了-yo this is true I was the laughing stock of the Ha Ha
- 2022-04-22 14:17:12下载
- 积分:1
-
使用whois协议查找域名的信息,如注册人、域名服务器等
使用whois协议查找域名的信息,如注册人、域名服务器等- Uses the whois agreement to search the domain name the
information, like registration person, domain name server and so on
- 2022-06-30 07:25:13下载
- 积分:1
-
socket_兼容版_通用版
用于网络通讯,数据流控制的SOCKET, 基于网络CCESocket进行了修改,并派生了一个异步套接字类,通过该类可以实现对MFC库中socket 的替代,该类增加了线程的安全判断,确保了线程安全!
- 2022-01-26 07:34:35下载
- 积分:1
-
基于Jennic公司Zigbee芯片JN5139做的无线键盘项目源码,适用于普通的PS2接口的键盘,代码中实现了PS2协议。代码包含Coordinator和Ro...
基于Jennic公司Zigbee芯片JN5139做的无线键盘项目源码,适用于普通的PS2接口的键盘,代码中实现了PS2协议。代码包含Coordinator和Router。-Zigbee chip companies based on Jennic
- 2023-08-20 16:20:02下载
- 积分:1
-
这个是网络编程,里面有源码,大家可以拿去学习学习,共同进步...
这个是网络编程,里面有源码,大家可以拿去学习学习,共同进步-This is a network programming, which has source code, we can take to learn to learn and progress together
- 2023-01-30 01:15:04下载
- 积分:1
-
Haokoo.net免费域名系统 (C#+VS.net版)软件介绍: 在此系统中你可学习一般的WEB服务器控件的使用,如Repater,DataList的分页,...
Haokoo.net免费域名系统 (C#+VS.net版)软件介绍: 在此系统中你可学习一般的WEB服务器控件的使用,如Repater,DataList的分页,DataGrid的分页、编辑、排序等功能的使用!!邮件的发送等,对于初学者是一个极好的学习教材-Haokoo.net free domain name system (C# VS.net version) software presentations : In this system you will be able to learn the general control of the Web server, like Repater, DataList tabs, the DataGrid paging, editing, sorting functions use! ! Mail delivery, for beginners is an excellent study material! !
- 2022-03-23 17:39:06下载
- 积分:1
-
< 精通Windows Sockets网络开发
< 精通Windows Sockets网络开发--基于Visual C++实现>> 一书的全部源代码,包括 多线程下载程序、网络五子棋、在线考试系统等五个项目。每个项目都使用不同的socket模型开发(比如select,基于消息、事件的异步模型,重叠i/o,完成端口),对于初学socket网络编程的朋友有极大帮助、、 -" " Proficient in Windows Sockets network development- based on Visual C++ implementation " " a book full source code, including multi-threaded download, network Gobang, online examination system of five projects. Each item using a different socket model development (such as select, overlapping io, the completion of the port), socket network programming for the beginner friend of great help,,,
- 2022-01-31 08:41:13下载
- 积分:1