赞
踩
线程数:表示在一次测试中启动多少个线程
ramp up period: 表示在多少时间内发光这些交易
公式:每秒的交易=线程数/ramp uptime
即 每秒5交易 = 100线程 / 20 秒发完
验证服务器版(python)
import socket
import datetime
def tcpServer(): s=socket.socket() host=socket.gethostname() port=1234 s.bind((host,port)) s.listen(10) print( 'Listening') while (True): try: c, addr=s.accept() c.settimeout(5) #设置超时时间 print( 'Got connection from', addr) req=c.recv(1024).decode() print ('Message received: %s' % req) if req == ":shutdown": c.send(":shuttingdown_down") c.close() break rep=req+datetime.datetime.now().strftime('%Y.%m.%d %H:%M:%S.%f') c.send(rep.encode()) # c.close() except Exception as e: print(e) finally: c.close() print("msg sent, connection closed") tcpServer() # 启动这个服务器
建立 jmeter 客户端参考此文 :https://www.cnblogs.com/zhengah/p/4876918.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。