How to determine minimum RAM Capacity and HardDisk Capacity of an .NET Application?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • selvialagar
    New Member
    • Apr 2008
    • 57

    How to determine minimum RAM Capacity and HardDisk Capacity of an .NET Application?

    I've developed an application. I need to know how much minimum RAM and HardDisk needed to run the application without any performance issues.
    In my application, i'll use networking(TCP) and database accessing(MySQL ).
    I saw the private bytes of my application in performance monitor. But I'don't know, it is the correct way of measuring the RAM capacity.

    Please Give me some suggestions.
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    Kind of hard to say for a generic application. No idea if it writes 5 gig of temp files to the drive... no idea if it tries to load 500 hi-res images into memory all at once.

    I guess you could...
    Check RAM when first started before doing anything
    Check RAM after doing a known number of objects (100 images for example)
    Check RAM after doing a larger number of objects (500 images)
    and calculate how much ram it is truly using for each x number of objects.

    This could let you publish specs like (Requires minimum 256meg to run, plus 100 megs per 1000 photos you wish to work with)... or whatever is the object in your case.

    Comment

    Working...