[转载] Code效率确实很低!!!(改进版)# Programming - 葵花宝典
o*r
1 楼
【 以下文字转载自 ProtestJapan 讨论区 】
【 原文由 observer 所发表 】
瓶颈在于network
我观察task manager的network usage才1%
估计大部分时间耗在了等待network api返回上
开10个thread, 半天才到count 100
我等到count 200就认为测试通过了
增加thread数目不一定会加快,因为switching
sleep是为了防止在thread之间无用的switch来回
大家试试吧
// Vote.cpp : Defines the entry point for the console application.
//
//#include
#include /* _beginthread, _endthread */
#include
#include
#include
#include "stdafx.h"
#include
#include
【 原文由 observer 所发表 】
瓶颈在于network
我观察task manager的network usage才1%
估计大部分时间耗在了等待network api返回上
开10个thread, 半天才到count 100
我等到count 200就认为测试通过了
增加thread数目不一定会加快,因为switching
sleep是为了防止在thread之间无用的switch来回
大家试试吧
// Vote.cpp : Defines the entry point for the console application.
//
//#include
#include
#include
#include
#include
#include "stdafx.h"
#include
#include