double trans_time; //定义变量
......
lr_start_transaction(lr_think_time(8); //思考时间
.......
trans_time=lr_get_transaction_wasted_time(); (trans_time) {
lr_output_message(,trans_time); //打印输出消耗实时间
}else{
lr_output_message();
}
lr_end_transaction(,LR_AUTO); //事务结束
..........
感谢上面这段代码很好帮助我们理解思考时间。
备注:添加思考时间可以更真实的模拟用户行为,但它同时降低了用户并发。也就是说思考时间越长,对服务器的压力会越小。