03-10-2010 03:28 AM
Sreedhar,
it depends on the datatype you keep in the queue wether you see a "free" or not. If your datatype is static (e.g. scalar numeric), you will not see any difference as Jeff mentioned.
If you are working with datatypes which might have different sized (array, variant), it is possible that a flush "frees" memory since every element allocated for the queue is reinitialized on the default datavalue.
hope this helps,
Norbert
03-10-2010 05:26 AM
yep!! Im dealing with arrays... never thought that there will be a difference if Im using arrays.
Things seems to be more clear now.
Thanks.