You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
3.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import time
import psutil
import tracemalloc
import requests
import aiohttp
def compute_task():
start_time = time.time()
result = sum(i * i for i in range(10**7))
end_time = time.time()
print(f"compute_task耗时{end_time - start_time}")
async def async_compute_task():
start_time = time.time()
result = sum(i * i for i in range(10**7))
end_time = time.time()
print(f"async_compute_task耗时{end_time - start_time}")
def measure_performance(func):
def wrapper(*args, **kwargs):
print(f"开始运行{func.__name__}")
time.sleep(30)
print(f"运行前的CPU使用率{psutil.cpu_percent()}%")
print(f"运行前的内存使用率:{psutil.virtual_memory().percent}%")
print()
tracemalloc.start()
start_time = time.time()
func(*args, **kwargs)
end_time = time.time()
current, peak = tracemalloc.get_traced_memory()
tracemalloc.stop()
print(f"{func.__name__}耗时:{end_time - start_time}")
print(f"当前内存使用:{current / 10**6}MB, 峰值内存使用:{peak / 10**6}MB")
print(f"CPU使用率{psutil.cpu_percent(interval=1)}%")
print(f"内存使用率:{psutil.virtual_memory().percent}%")
print()
time.sleep(30)
print(f"运行结束30秒后的CPU使用率{psutil.cpu_percent()}%")
print(f"运行结束30秒后的内存使用率{psutil.virtual_memory().percent}%")
print(f"运行结束{func.__name__}结束")
print()
return wrapper
def measure_performance_async(func):
async def wrapper(*args, **kwargs):
print(f"开始运行{func.__name__}")
time.sleep(30)
print(f"运行前的CPU使用率{psutil.cpu_percent()}%")
print(f"运行前的内存使用率:{psutil.virtual_memory().percent}%")
print()
tracemalloc.start()
start_time = time.time()
await func(*args, **kwargs)
end_time = time.time()
current, peak = tracemalloc.get_traced_memory()
tracemalloc.stop()
print(f"{func.__name__}耗时:{end_time - start_time}")
print(f"当前内存使用:{current / 10**6}MB, 峰值内存使用:{peak / 10**6}MB")
print(f"CPU使用率{psutil.cpu_percent(interval=1)}%")
print(f"内存使用率:{psutil.virtual_memory().percent}%")
print()
time.sleep(30)
print(f"运行结束30秒后的CPU使用率{psutil.cpu_percent()}%")
print(f"运行结束30秒后的内存使用率{psutil.virtual_memory().percent}%")
return wrapper
def fetch_url(url):
response = requests.get(url)
async def fetch_url_async(url):
async with aiohttp.ClientSession() as session:
async with session.get(url, ssl=False) as response:
await response.read()
urls = [
"https://www.baidu.com", "https://www.qq.com", "https://www.taobao.com",
"https://www.tmall.com", "https://www.jd.com", "https://www.sina.com.cn",
"https://www.weibo.com", "https://www.163.com", "https://www.sohu.com",
"https://www.ifeng.com", "https://www.alipay.com", "https://www.youku.com",
"https://www.iqiyi.com", "https://www.tudou.com", "https://www.douyin.com",
"https://www.meituan.com", "https://www.xiaomi.com",
"https://www.oppo.com", "https://www.vivo.com", "https://www.dianping.com",
"https://www.autohome.com.cn", "https://www.hupu.com",
"https://www.xinhuanet.com", "https://www.chinadaily.com.cn",
"https://www.people.com.cn", "https://www.cctv.com", "https://www.cntv.cn",
"https://www.zol.com.cn", "https://www.pconline.com.cn",
"https://www.techweb.com.cn", "https://www.cs.com.cn",
"https://www.eastmoney.com", "https://www.hexun.com",
"https://www.yicai.com", "https://www.21jingji.com"
]