Question about RAM

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Éric Lapointe

    Question about RAM

    I create a simple windows form with a textbox.

    In Process information window of WindowsXP, my application eat 8,88 meg of
    memory

    IT IS A LOT ! it is normal ?

    Thanks for your answers

    Éric Lapointe

    --
    Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
  • Herfried K. Wagner [MVP]

    #2
    Re: Question about RAM

    * =?iso-8859-15?Q?=C9ric_Lap ointe?= <Eric.Lapointe@ usherbrooke.ca> scripsit:[color=blue]
    > I create a simple windows form with a textbox.
    >
    > In Process information window of WindowsXP, my application eat 8,88
    > meg of memory
    >
    >
    > IT IS A LOT ! it is normal ?[/color]

    Yes.

    --
    Herfried K. Wagner [MVP]
    <URL:http://dotnet.mvps.org/>

    Comment

    • Éric Lapointe

      #3
      Re: Question about RAM

      But... * meg... there is a way to optimize that ?

      Éric

      On 14 Jun 2004 20:41:46 +0200, Herfried K. Wagner [MVP]
      <hirf-spam-me-here@gmx.at> wrote:
      [color=blue]
      > * =?iso-8859-15?Q?=C9ric_Lap ointe?= <Eric.Lapointe@ usherbrooke.ca>
      > scripsit:[color=green]
      >> I create a simple windows form with a textbox.
      >>
      >> In Process information window of WindowsXP, my application eat 8,88
      >> meg of memory
      >>
      >>
      >> IT IS A LOT ! it is normal ?[/color]
      >
      > Yes.
      >[/color]



      --
      Using Opera's revolutionary e-mail client: http://www.opera.com/m2/

      Comment

      • Herfried K. Wagner [MVP]

        #4
        Re: Question about RAM

        * =?iso-8859-15?Q?=C9ric_Lap ointe?= <Eric.Lapointe@ usherbrooke.ca> scripsit:[color=blue]
        > But... * meg... there is a way to optimize that ?[/color]

        In general, no.

        --
        Herfried K. Wagner [MVP]
        <URL:http://dotnet.mvps.org/>

        Comment

        • Guest's Avatar

          #5
          Re: Question about RAM

          Yeah, it seems like a lot. The virtual machine is heavy. But IMHO people
          tend to give too much weight to what Task Manager tells them. AFAIK, the mem
          usage reported includes memory *mapped* into the process (meaning it's not
          part of the process proper). Meaning if you have two .NET exe's running...
          they both say 8mb.... but really 4 of those 8 megs is claimed by the runtime
          and is shared between the two (little known fact: the *executable binary
          image* of DLL's in memory is always shared across processes... even on
          NT/2K/XP!) meaning they only really occupy about 12 megs of actual RAM.

          Before someone jumps up to note the process seperations on NT based Windows
          without really understanding how it works (note I said *exectuable image*
          NOT *storage* space- heaps or stacks) , see article Q100635 in MSKB or MSDN.

          "Éric Lapointe" <Eric.Lapointe@ usherbrooke.ca> wrote in message
          news:opr9lq67y6 bqu4fa@satellit e2450.civil.ush erbrooke.ca...[color=blue]
          > But... * meg... there is a way to optimize that ?
          >
          > Éric
          >
          > On 14 Jun 2004 20:41:46 +0200, Herfried K. Wagner [MVP]
          > <hirf-spam-me-here@gmx.at> wrote:
          >[color=green]
          > > * =?iso-8859-15?Q?=C9ric_Lap ointe?= <Eric.Lapointe@ usherbrooke.ca>
          > > scripsit:[color=darkred]
          > >> I create a simple windows form with a textbox.
          > >>
          > >> In Process information window of WindowsXP, my application eat 8,88
          > >> meg of memory
          > >>
          > >>
          > >> IT IS A LOT ! it is normal ?[/color]
          > >
          > > Yes.
          > >[/color]
          >
          >
          >
          > --
          > Using Opera's revolutionary e-mail client: http://www.opera.com/m2/[/color]


          Comment

          Working...