Jump to content

Unigui Server Handles meaning


azago

Recommended Posts

I'm trying an application and at the start of the server under test, without any user connected I have

image.png.81cfb5d79227a691d3fc3a61e5d87ad2.png

Is it an indication of an application architecture problem?

Since the maximum value is 200. Can the value be raised?

The program has

22 form

12 datamodule

50 view

in addition to main form, main module, etc ..


Where can I find documentation on the handles ?

Thanks

Angelo

 

 

 

 

Link to comment
Share on other sites

  • 1 year later...
  • Administrators

These are the Windows OS "Handle" resources. Handles are used in various resource types. For example each open file consumes one OS "Handle".

It is monitored to make sure there are no Handle leaks. As an example, if you open a file but forget to close it, this action will leak one handle. 

Link to comment
Share on other sites

  • 1 month later...
On 5/10/2022 at 2:08 PM, Farshad Mohajeri said:

These are the Windows OS "Handle" resources. Handles are used in various resource types. For example each open file consumes one OS "Handle".

It is monitored to make sure there are no Handle leaks. As an example, if you open a file but forget to close it, this action will leak one handle. 

so in the screenshot he provided he has currently 72 leaks with a peak of 76 above the normal?

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...