前文曾经讲到,如何使用多线程机制分派应答线程,但是该实现在使用loadRunner测试的时候,发现系统在并发访问是内存占用非常大,在一段时间的测试后虚拟机报告not enough memory的错误。当然,我们可以通过增加虚拟机参数设置的方法,增加虚拟机最大内存占用值,但是一旦系统所需的内存超过设定值,虚拟机依然会报错。
幸运的是,java 6提供java.util.concurrent.Executors类对线程池进行控制。
我们对Myserver类进行如下修改:
public class MyServer
{
public static final int setTimeOut = 8000;
private int port = 80;//默认端口
Selector selector;
ByteBuffer buffer = ByteBuffer.allocate(1024 * 8);
private final ExecutorService pool;
/**
* 初始化一个server
* @throws Exception
*/
public MyServer() throws Exception
{
pool = Executors.newFixedThreadPool(50);
init();
}
/**
* 实际初始化一个server
* 包括webLoader加载、解析appRuntime、注册通道等工作
* @throws Exception
*/
public void init() throws Exception
{
/*初始化webloader*/
WebLoader webLoader = WebLoader.getInstance();
webLoader.loadAll();// 这里已经隐含着将appRuntime初始化了
port = (Integer)AppRunTime.getInstance().getProperty(Constant.SERVER_PORT);
ServerSocketChannel channel = ServerSocketChannel.open();
channel.configureBlocking(false);
channel.socket().bind(new InetSocketAddress(port));
selector = Selector.open();
channel.register(selector, SelectionKey.OP_ACCEPT);
}
/**
* 请不要误会,这并不是一个多线程的run()方法
* 另外,server只接受isAcceptable为真的请求
* 单向的消息请求暂不提供
* @throws Exception
*/
public void run() throws Exception
{
while (true)
{
int num = selector.select();
if (num != 0)
{
Set<SelectionKey> set = selector.selectedKeys();
Iterator<SelectionKey> it = set.iterator();
while (it.hasNext())
{
SelectionKey key = it.next();
if (key.isAcceptable())
{
accept((ServerSocketChannel) key.channel());
}
it.remove();
}
}
}
}
/**
* 对于isAcceptable的请求启动一个SoketProcess线程
* @param serverSocket
* @throws IOException
*/
protected void accept(ServerSocketChannel serverSocket) throws IOException
{
SocketProcess pc = new SocketProcess(serverSocket);
/*使用java1.6的多线程新特性*/
pool.execute(pc);
/*测试用*/
//pc.run();
}
/**
* 启动命令,发布版里使用bootstrap项目调用这个main方法,参数设置也挪至bootstrap项目中
* @param args 暂无 待扩充
* @throws Exception
*/
public static void main(String args[]) throws Exception
{
long time = Calendar.getInstance().getTimeInMillis();
MyServer server = new MyServer();
time = Calendar.getInstance().getTimeInMillis()-time;
System.out.println("服务器这正在监听端口"+AppRunTime.getInstance().getProperty(Constant.SERVER_PORT)+".....");
System.out.println("启动成功,总耗时"+time+"毫秒.....");
server.run();
}
}
其实我仅仅修改了两句代码
pool = Executors.newFixedThreadPool(50);
和
pool.execute(pc);
头一句做了一个固定大小的线程池,第二句执行
当然我们也可以pool = Executors.newCachedThreadPool();这样仅仅建立一个普通的线程池,线程可以重用,但是没有数量限制....
分享到:
相关推荐
作为一个处于开发和测试阶段的小型容器,Fried Cake Server为开发者提供了在JSP(JavaServer Pages)环境中的部署和管理应用的新选择。 J2EE,全称Java 2 Platform, Enterprise Edition,是由Oracle公司主导的Java...
- 萝卜糕:Turnip Cake 或 Fried White Radish Patty - 盐鸭蛋:Salted Duck Egg - 锅贴:Fried Dumpling - 馍头:Steamed Bun - 葱油饼:Spring Onion Pancake - 饺子:Dumpling - 稀饭(粥):Rice ...
"transLucid (was Lucid Fried Eggs)" 这个标题表明这是一个名为 "transLucid" 的项目,之前可能被称为 "Lucid Fried Eggs"。这可能是因为项目经历了改名或更新,通常这样的变化伴随着软件的发展或品牌重塑。"开源" ...
QTip QTip是通过命令行管理的自托管... qtip serve /recipe/fried-chicken fried-chicken-recipe.md 产品特点 Markdown文件支持 自动将markdown中嵌入的本地图像上传和存储到您的首选CDN 100%自托管 :rocket: 演示版
GOMake a dent in the universeScratch your own itchStart making somethingNo time is no excuseDraw a line in the sandMission statement impossibleOutside money is Plan ZYou need less than you thinkStart ...
Fried衰弱评估方法.pdf
自动正确地回答来自www.freerice.com的问题,从而向联合国提供了大量大米,以养活世界。
5. 煎蛋火鸡 - Fried egg with turkey 6. 饺子 - Dumplings 7. 甜品 - Dessert 8. 三明治 - Sandwich 9. 比萨 - Pizza 10. 汉堡 - Hamburger 11. 蛋糕 - Cake 12. 西瓜 - Watermelon 13. 梨 - Pear 14. 橙子 - ...
对于并发,我目前也在摸索的过程中,写这个系列的目的主要是为了巩固知识。如果有不对的地方还望大佬们指正! :fried_shrimp: :pizza: 大纲 章节 源码位置 12.Java8:并发流 13.Java8:CompletableFuture 番外篇 ...
- 甜品及其他西点:如巧克力蛋糕(Chocolate Cake) 4. **饮品和酒类**: - 中国酒:如黄酒(Yellow Wine),白酒(Liquor) - 葡萄酒:如干红(Dry Red Wine) - 洋酒:如威士忌(Whisky),白兰地(Brandy) ...
epOS,Ramon Fried(2013-2016)的教育版英特尔8086 32位操作系统 强调 兼容Multiboot 1.0 位图页面框架分配器 高半内核 分页已启用 使用循环算法的可抢占式调度 环0-3内核与用户空间分离 交流会 APIC / IOAPIC ...
- `油炸食品`: fried food - `体检`: physical examination - `减肥`: lose weight - `通常;大体上`: usually; generally - `加糖的咖啡`: sugary coffee - `a bit of`: 一点点 - `would rather do sth.`: ...
- French fries:炸薯条,切片的土豆油炸而成。 - baked potato:烘马铃薯,整个土豆烘烤至软糯。 - mashed potatoes:马铃薯泥,捣碎的煮熟土豆。 - omelette:简蛋卷,煎熟的鸡蛋卷。 - pudding:布丁,甜点,通常...
- "I recommend crispy and fried duck."(我推荐香酥鸭。) 这些对话涵盖了餐厅服务的基本流程,包括迎接顾客、询问需求、推荐菜品、预订和等待座位、以及就座后的点餐过程。了解这些常用表达对于在餐厅工作的...
- 我不愿意吃太多的油炸食品:I am unwilling to eat too much fried food. - 主要是膳食平衡:mainly a balanced diet - 我同意多吃水果和蔬菜对身体好:I agree that eating more fruits and vegetables is ...
cbevins /消防设施一种基于1995年杰里米·弗里德(Jeremy S.Fried)和伯顿·弗雷德(Burton D.Fried)论文的火遏制算法和初始攻击模型,题为“用现实战术模拟野火遏制”。 它是根据Jeremy S.Fried(1991)的FCAT防火...
- fried:油炸的,指通过热油烹制的食物。 - balanced:平衡的,形容饮食均衡,包含各种必要的营养成分。 - slim:苗条的,形容身材瘦削,符合现代审美标准。 2. 单项选择题: - interested:感兴趣的,用于...
- **fry**:动词,意为“油煎,油炸”,形容词形式为**fried**,表示“油炸的,油煎的”。 示例: - 他炸了一个鸡蛋。He fried an egg. - 油炸鸡肉 fried chicken 2. **短语应用** - **be bad for**:对……...
- 炒(stir-fried/sautéed):快速翻煎食材,如"炒鳝片"(Stir-fried eel slices) - 爆(quick-fried):快炒,通常用高温短时间烹制,如"爆炒肉丝" - 炸(deep-fried):包括软炸和酥炸,如"软炸里脊"(soft-...