assign 发表于 2005-4-27 17:30:37

如何在VU脚本中输出多个操作的时间和?

如何在VU脚本中输出多个操作的时间和?
或者怎么设置报表,可以把几个操作的时间和作为分析对象?

assign 发表于 2005-4-29 08:58:14

VU的只读变量
_fr_ts SQL语句被服务器响应的时间点
_fs_ts SQL语句被提交给服务器的时间点

int at = 0;
……
stmt_2_1_id = sqlopen_cursor ["vb_vu001"] "", "select * from tbl_product";
at += _fr_ts - _fs_ts;
……
stmt_2_2_id = sqlopen_cursor ["vb_vu003"] "", "select * from tbl_loan where loanid like '%6051%'";
at += _fr_ts - _fs_ts;
……
start_time ["no delay"] (time()-at);
stop_time ["no delay"];
......


方法比较笨

pcl2004_27 发表于 2005-5-6 22:36:38

你可以添加事务阿!
事物是度量你操作时间的!

assign 发表于 2005-5-18 10:40:52

我知道的不多,能说得更细一些吗?谢谢
比如:怎么添加事务?
页: [1]
查看完整版本: 如何在VU脚本中输出多个操作的时间和?