Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Issues with Buffers

Former Member
0 Likes
727

HI all,

I am testing a Z program for performance,

I copied the Z program in to another Y program and did performance tuning.

when i am running in background first Z program and then Y program

Y perogram is giving less time.

and if I am testing in the reverse order, testing Y program frst and then Z program

Z program is giving good results.

1:How can we measure execution time for any program.

2: How to handle buffers? (when the first time program is executed where the data bufered like SAP buffer or Application server buffer or Presentation server buffer.)

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
696

the effect of the buffers (table buffer mainly) should become visible only between the really first execution and the second execution.

So how much time is between your actual measurements.

And please repeat your measurements several times, then you learn how statistical variation you have

and what is really an effect.

You optimize the repeated execution not the very first one.

Siegfried

HI all,

I am testing a Z program for performance,

I copied the Z program in to another Y program and did performance tuning.

when i am running in background first Z program and then Y program

Y perogram is giving less time.

and if I am testing in the reverse order, testing Y program frst and then Z program

Z program is giving good results.

1:How can we measure execution time for any program.

2: How to handle buffers? (when the first time program is executed where the data bufered like SAP buffer or Application server buffer or Presentation server buffer.)

2 REPLIES 2
Read only

Former Member
0 Likes
697

the effect of the buffers (table buffer mainly) should become visible only between the really first execution and the second execution.

So how much time is between your actual measurements.

And please repeat your measurements several times, then you learn how statistical variation you have

and what is really an effect.

You optimize the repeated execution not the very first one.

Siegfried

Read only

Former Member
0 Likes
696

thank you