Silk Performer does not have a mechanism built in to allow Iteration Pacing. However it is possible to code a solution for this which will have the same effect. Iteration pacing can be understood as a think time in between test iterations and is achieved by adding a separate transaction to control program flow using a thinktime as follows: @codepage(1252) benchmark SilkPerformerRecorder dcluser user VUser transactions TInit : begin; TMain : 1; TWait :1; dcltrans transaction TInit begin WebModifyHttpHeader("Accept-Language", "en-gb"); end TInit; transaction TMain var begin SetEncoding("UTF-8"); end TMain; transaction TWait begin Thinktime(10.0); end TWait; You should however be aware that this transaction will be included in the calculation for Transaction Overall Response time. Old KB# 20458
↧