1.事务、计算单个请求的相应时间

  添加事务 (事务是可以嵌套的、但必须成对的)

lr_start_transaction(\'openshouye\')  事务开始  

lr_end_transaction(\'openshouye\')    事务结束

lr_get_transaction_duration(\'openshouye\') 获取事务时间(包含浪费时间)
必须放置事务结束之前(Removes wasted time from all open transactions)
lr_get_transaction_vasted_time(\'openshouye\')  获取浪费时间
必须放置事务结束之前(Removes wasted time from all open transactions)

2. 手动设置事务的状态

lr_set_transaction_status 

3. 计算代码片段的时间

 

time =lr_start_time()

waster=lr_end_time(time)
lr_wasted_time(waster*1000)

  4.浪费时间

lr_wasted_time()获取浪费时间 是单位毫秒 milliseconds  与 秒之间1000

 


   5. 添加集合点

 

lr_rendezvous("集合点")  //添加集合点

  

    

版权声明:本文为tsgxj原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/tsgxj/p/11002106.html