Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Free memory?

    Is there any way at all the get the total amount of free memory on the
    current system?

    Im desiging an application that can run well on low end machines[32 MB RAM]
    up to 512MB-1GB. The problem is that the code is bottlenecked by the
    available RAM, so I need to be able to allocate as much RAM as possible,
    without allocating too much[and so hitting the disk].


    Maxim Guest

  2. Similar Questions and Discussions

    1. #26249 [Fbk->Opn]: snmpget doesn't free memory
      ID: 26249 User updated by: dacol dot jeremy at caramail dot com Reported By: dacol dot jeremy at caramail dot com -Status: ...
    2. #26249 [NoF->Fbk]: snmpget doesn't free memory
      ID: 26249 Updated by: iliaa@php.net Reported By: dacol dot jeremy at caramail dot com -Status: No Feedback...
    3. My Informix Never free up memory!
      steven wrote: Your buffers are vastly underconfigured - 50000 would be a starting point, and go up from there. However, your ESQL/C program...
    4. I NEED FREE tech support re; memory
      My 512mb memory update came in the mail today. I installed it. After reboot my screen sayse it has recognized the memory upgrade. Top screen sayse...
    5. perl memory management - does @array = () free the memory?
      I have a sizable array that I want to clear (i.e. free the memory for other use). Will @array = () alert a garbage collector in Perl to mark the...
  3. #2

    Default Re: Free memory?

    Hi,

    you can use WMI (Windows Management Instrumentation), there is a managed
    namespace in .NET framework. You can query WMI on the server to get the max
    amount of memory, current memory consumption and running services for
    example (and much more...).

    I quickly tried to find an example online, here is one:

    [url]http://www.freevbcode.com/ShowCode.Asp?ID=4571[/url]

    Best regards,

    Marc Höppner
    NeoGeo

    "Maxim" <luthor@powerup.com.au> wrote in message
    news:0vMQa.84$vZ5.3980@nnrp1.ozemail.com.au...
    > Is there any way at all the get the total amount of free memory on the
    > current system?
    >
    > Im desiging an application that can run well on low end machines[32 MB
    RAM]
    > up to 512MB-1GB. The problem is that the code is bottlenecked by the
    > available RAM, so I need to be able to allocate as much RAM as possible,
    > without allocating too much[and so hitting the disk].
    >
    >

    Marc Hoeppner Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139