赞
踩
- package main
-
- import (
- "runtime"
- )
- func main() {
- runtime.GOMAXPROCS(3)
- go task()
- go task()
- select{}
- }
- func task(){
- a := 100
- for {
- a += 1
- }
- }
上面代码正常情况下会使cpu使用率达到60%左右,
但是如果我们想要是cpu使用率控制现在25%左右的话,得借助cpulimit命令:
yum install cpulimit //安装cpulimit
cpulimit -l 25 -p 3306 //25:cpu的上限值,3306:进程pid号
之后用top查看cpu:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。