F
fabrice
Hello
I m testing my application based on the framework 1.1 with few users.
I m worried about the memory of my server. I can notice a terrifying
increase of memoring using by my application server.
For example, before start application, the memory using is about 280mo.
After starting the application and 10 minutes of utilisation by 10 users....
the memory has grown to 480mo !!!
I don't understand why. I have try to be clean in my code (vb.net) and
liberate all my object as soon as i can by the nothing and dispose codes.
for example in my code :
'dispose of the Dataset/adaptater objects
myDataSet.Dispose()
myDataSet=Nothing
myAdapter.Dispose()
myAdapter=Nothing
or
'dispose command object
objCmd.Dispose()
objCmd = Nothing
or for the variable :
var1=Nothing
So do i have made a mistake or forgotten something ?
Is it normal to see this situation of the memory ? Does this increase will
stop one day ???
Thanks for your help
fabrice
I m testing my application based on the framework 1.1 with few users.
I m worried about the memory of my server. I can notice a terrifying
increase of memoring using by my application server.
For example, before start application, the memory using is about 280mo.
After starting the application and 10 minutes of utilisation by 10 users....
the memory has grown to 480mo !!!
I don't understand why. I have try to be clean in my code (vb.net) and
liberate all my object as soon as i can by the nothing and dispose codes.
for example in my code :
'dispose of the Dataset/adaptater objects
myDataSet.Dispose()
myDataSet=Nothing
myAdapter.Dispose()
myAdapter=Nothing
or
'dispose command object
objCmd.Dispose()
objCmd = Nothing
or for the variable :
var1=Nothing
So do i have made a mistake or forgotten something ?
Is it normal to see this situation of the memory ? Does this increase will
stop one day ???
Thanks for your help
fabrice