Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. Why is .NET such a memory hog?

Why is .NET such a memory hog?

Scheduled Pinned Locked Moved .NET (Core and Framework)
questioncsharpperformancehelpannouncement
24 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J J Dunlap

    That's not quite the same - an interpereted language is never compiled at any point, whereas Java and MSIL are compiled to native code at runtime, and can even be turned into a native code exe using ngen.exe .

    "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
    "You must be the change you wish to see in the world." - Mahatma Gandhi

    J Offline
    J Offline
    Joey Bloggs
    wrote on last edited by
    #6

    I see. The processor uses esp to sense which instructions to perform from an interpreted language... Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway)

    J A M 3 Replies Last reply
    0
    • J Joey Bloggs

      I see. The processor uses esp to sense which instructions to perform from an interpreted language... Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway)

      J Offline
      J Offline
      J Dunlap
      wrote on last edited by
      #7

      No, it parses the code and calls predefined methods based on the code. But even if it compiled it (which no doubt some interpreters do), there is a huge difference between parsing text code and reading byte code. You can also easily create a native image from an assembly, which is just a cached native code image of the assembly, and does not need to be JITed.

      "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
      "You must be the change you wish to see in the world." - Mahatma Gandhi

      1 Reply Last reply
      0
      • J Joey Bloggs

        I see. The processor uses esp to sense which instructions to perform from an interpreted language... Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway)

        A Offline
        A Offline
        Arjan Einbu
        wrote on last edited by
        #8

        Joey Bloggs wrote: Interpreted / JIT it is about the same performance hit When code is JIT compiled, it will be compiled only once during the execution of the program, regardless of how many times the same code is run (in loops etc.) In interpreted code, the interpretation process is repeated for each loop iteration.

        J 1 Reply Last reply
        0
        • A Arjan Einbu

          Joey Bloggs wrote: Interpreted / JIT it is about the same performance hit When code is JIT compiled, it will be compiled only once during the execution of the program, regardless of how many times the same code is run (in loops etc.) In interpreted code, the interpretation process is repeated for each loop iteration.

          J Offline
          J Offline
          Joey Bloggs
          wrote on last edited by
          #9

          I think that that would depend on how much memory is available to the VM. It might need to discard and recompile depending on a wide range of issues.

          B J J 3 Replies Last reply
          0
          • J Joey Bloggs

            I think that that would depend on how much memory is available to the VM. It might need to discard and recompile depending on a wide range of issues.

            B Offline
            B Offline
            Bo Hunter
            wrote on last edited by
            #10

            That's exactly right. It is not interpreted. I have read this in books and MSDN that's why I asked before I anwsered. To be interpreted it means that it is interpreted at runtime. Big Big difference. Bo Hunter

            1 Reply Last reply
            0
            • A Adam Durity

              Why does a simple .NET app with a few forms take more memory to run than apps like explorer.exe and wmplayer? Furthermore, why after closing a form does a .NET app not release the memory used by that form? For extended runtime apps this could pose to be a serious issue. Are there any tips you all could offer on memory management in .NET to make it more efficient? -- Adam "If you can't beat your computer in chess, try kickboxing"

              S Offline
              S Offline
              Stephane Rodriguez
              wrote on last edited by
              #11

              You might want to take a look at this weblog[^] (CLR guy) to understand the pros and cons of the GC. There is also a .NET show with two CLR horses, explaining how it works and why it's by design a "forward allocator". Also of note, the CLR itself is changing from version to version, and may better adapt to stronger requirements. Who knows what's coming next... Taking advantage of InternetExplorer to steal user's name and password. Taking advantage of InternetExplorer to steal user's clipboard.

              L 1 Reply Last reply
              0
              • J Joey Bloggs

                I think that that would depend on how much memory is available to the VM. It might need to discard and recompile depending on a wide range of issues.

                J Offline
                J Offline
                James T Johnson
                wrote on last edited by
                #12

                Joey Bloggs wrote: It might need to discard and recompile depending on a wide range of issues. IIRC the version of .NET available on your PC does not throw out JITted code. The notion that it does happen is because of early announcements released by MS and at conferences where they were going to make 3 different JIT compilers. That didn't actually happen in time for the framework to go live, so you have two different compilers, the one used by PCs and one used by the compact framework (which does have code-pitching). I thought I remembered someone from MS making a comment to this end, but all I can find is this one[^]. James "I despise the city and much prefer being where a traffic jam means a line-up at McDonald's" Me when telling a friend why I wouldn't want to live with him

                1 Reply Last reply
                0
                • S Stephane Rodriguez

                  You might want to take a look at this weblog[^] (CLR guy) to understand the pros and cons of the GC. There is also a .NET show with two CLR horses, explaining how it works and why it's by design a "forward allocator". Also of note, the CLR itself is changing from version to version, and may better adapt to stronger requirements. Who knows what's coming next... Taking advantage of InternetExplorer to steal user's name and password. Taking advantage of InternetExplorer to steal user's clipboard.

                  L Offline
                  L Offline
                  leppie
                  wrote on last edited by
                  #13

                  I dont understand why people complain when they are lazy (iow using a GC and complaining about it). If all this .NET is so evil, then go ahead and save $100 dollars on some more hardware, and spend a few factors more developing a similar application in a non-GC enviroment. leppie::AllocCPArticle(Generic DFA State Machine for .NET);

                  S 1 Reply Last reply
                  0
                  • L leppie

                    I dont understand why people complain when they are lazy (iow using a GC and complaining about it). If all this .NET is so evil, then go ahead and save $100 dollars on some more hardware, and spend a few factors more developing a similar application in a non-GC enviroment. leppie::AllocCPArticle(Generic DFA State Machine for .NET);

                    S Offline
                    S Offline
                    Stephane Rodriguez
                    wrote on last edited by
                    #14

                    Only to defend the claims of the original poster, it's true that start time of managed apps is somewhat unusual, the memory usage too. For instance, if all windows services were managed apps, it would require much more time to reboot the machine, even if the services are supposed to be non-blocking. It's probably harder to distribute and sell managed apps today since the end user is not yet used to it. I personally can't see my self distributing a managed app as a shareware, only to expose myself to the deployment problems, plus today's slow start time and memory consumption of managed apps. Taking advantage of InternetExplorer to steal user's name and password. Taking advantage of InternetExplorer to steal user's clipboard.

                    1 Reply Last reply
                    0
                    • A Adam Durity

                      Why does a simple .NET app with a few forms take more memory to run than apps like explorer.exe and wmplayer? Furthermore, why after closing a form does a .NET app not release the memory used by that form? For extended runtime apps this could pose to be a serious issue. Are there any tips you all could offer on memory management in .NET to make it more efficient? -- Adam "If you can't beat your computer in chess, try kickboxing"

                      J Offline
                      J Offline
                      J Dunlap
                      wrote on last edited by
                      #15

                      I have found that what takes alot of memory is not the classes you create, but the initial .NET CLR runtime. This means that your apps may have a large initial memory footprint, but unless you do something that normally takes a whole lot of memory, the amount of memory will not increase any faster than a C++ application beyond that. As for the speed issues, they are because of JIT compilation. If you want to have fast startup times, run ngen.exe on each of the assemblies in your application. This creates a native image of your assembly, so it does not need to be compiled at runtime. Nish and Rama Krishna did a study on the speed of ngen'ed and non-ngen'ed C#, VB.NET, VB, ngen'ed MC++, non-ngen'ed MC++, mixed C++, etc., and they found that C# is not alot slower than C++ once it has been ngen'ed, because there is no longer the overhead of JIT compilation.

                      "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                      "You must be the change you wish to see in the world." - Mahatma Gandhi

                      1 Reply Last reply
                      0
                      • J Joey Bloggs

                        I think that that would depend on how much memory is available to the VM. It might need to discard and recompile depending on a wide range of issues.

                        J Offline
                        J Offline
                        J Dunlap
                        wrote on last edited by
                        #16

                        As I said before, if you run ngen.exe on the assemblies, they will no longer need to be JIT'ed at runtime, and therefore, will run much faster.

                        "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                        "You must be the change you wish to see in the world." - Mahatma Gandhi

                        M I 2 Replies Last reply
                        0
                        • A Adam Durity

                          Why does a simple .NET app with a few forms take more memory to run than apps like explorer.exe and wmplayer? Furthermore, why after closing a form does a .NET app not release the memory used by that form? For extended runtime apps this could pose to be a serious issue. Are there any tips you all could offer on memory management in .NET to make it more efficient? -- Adam "If you can't beat your computer in chess, try kickboxing"

                          H Offline
                          H Offline
                          Heath Stewart
                          wrote on last edited by
                          #17

                          If you display forms using Form.ShowDialog() (shows a modal dialog), you must call Form.Dispose() when you're finished with it. The documentation for Form.ShowDialog() even states this. Managed application are often bigger memory hogs than their Win32 counterparts, but they can also be faster when managed correctly by your code. Keep in mind that most "windows crashes" are usually actually applications' faults (or users - more often users' faults!). Even though the GC will cleanup memory eventually, you must make sure that all references to an object are disposed. After calling Form.ShowDialog, the form is not disposed until you do so manually. When you start throwing controls and strings in multiple collections, you must make sure than no collections still hold a reference to them. If so, the object still exists on the heap and the GC won't clean it up. The reason it is sometimes faster even though it is JIT'd (not interpreted like someone said before - I too get deep into the internals of the CLR and IL) is because of improvements in heap and general memory management - that doesn't necessarily mean smaller memory requirements, unfortunately. I think another reason for large sizes is something I suffer from a lot - overly large assemblies. For instance, in a signed XML app I wrote, I'm forced to use the Microsoft.Web.Services assembly for one class because the System.Cryptography equivalent (using enveloped signatures in this example) doesn't work (at least, not yet). So, the whole Microsoft.Web.Services assembly must be loaded into memory (at least, unlike older implementations of Java, the whole thing isn't JIT'd - just the class I need). This happens quite a bit from what I see. Sometimes making things too easy isn't necessarily a good idea (read "good developers loosing jobs to crappy drag-n-drop VB code monkeys").

                          -----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----

                          1 Reply Last reply
                          0
                          • J J Dunlap

                            As I said before, if you run ngen.exe on the assemblies, they will no longer need to be JIT'ed at runtime, and therefore, will run much faster.

                            "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                            "You must be the change you wish to see in the world." - Mahatma Gandhi

                            M Offline
                            M Offline
                            mattiash
                            wrote on last edited by
                            #18

                            No, they will *start* much faster. That's completely different from *running* faster. A pre-jitted application is likely to run much slower, since the optimizations done by the JIT compiler won't take place. For details, see Jeffrey Richter's article about JIT Compilation and Performance - To NGen or Not to NGen.

                            1 Reply Last reply
                            0
                            • J Joey Bloggs

                              I see. The processor uses esp to sense which instructions to perform from an interpreted language... Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway)

                              M Offline
                              M Offline
                              mattiash
                              wrote on last edited by
                              #19

                              Joey Bloggs wrote: Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway) Certainly not! The CLR compiles to native code once and then re-uses the native code. It does not throw out any compiled code. Interpreted code is completely different from this. Something you don't mention is that managed code in fact can be much faster: - A managed execution environment can optimize on the specific machine you're running. - There are JVMs that re-compiles code that is frequently run and does more heavy optimizations on that code. - A managed execution environment can do cross-optimization over several assemblies, that weren't even known when designing the application. The above wouldn't be possible in a non-JITted environment. Before your next post, please spend some time learning how the CLR really works! Some good links are: Applied Microsoft .NET Framework Programming Writing High-Performance Managed Applications : A Primer (in the left columns you have several good articles as well) Articles by Jeffrey Richter MSDN Magazine

                              S 1 Reply Last reply
                              0
                              • J Joey Bloggs

                                The same reason its such a processor hog, its interpreted. I'm sure that the garbage collection system will eventually release the memory. I haven't got this far in .net yet but in java I had to implement Object Pools and an ObjectPoolManager to recycle objects. The costs in gc and performance where too high otherwise.

                                M Offline
                                M Offline
                                mattiash
                                wrote on last edited by
                                #20

                                Joey Bloggs wrote: haven't got this far in .net yet but in java I had to implement Object Pools and an ObjectPoolManager to recycle objects. The costs in gc and performance where too high otherwise. You're certainly right in that there's a cost involved in using heap memory - in C++, Java as well as C#. If you have objects that are expensive to create and that you frequently need to allocate and deallocate such objects, pooling is a good idea in any language. I wouldn't do it until I saw it was a bottleneck though.

                                1 Reply Last reply
                                0
                                • M mattiash

                                  Joey Bloggs wrote: Interpreted / JIT it is about the same performance hit (in the same order of magnitude anyway) Certainly not! The CLR compiles to native code once and then re-uses the native code. It does not throw out any compiled code. Interpreted code is completely different from this. Something you don't mention is that managed code in fact can be much faster: - A managed execution environment can optimize on the specific machine you're running. - There are JVMs that re-compiles code that is frequently run and does more heavy optimizations on that code. - A managed execution environment can do cross-optimization over several assemblies, that weren't even known when designing the application. The above wouldn't be possible in a non-JITted environment. Before your next post, please spend some time learning how the CLR really works! Some good links are: Applied Microsoft .NET Framework Programming Writing High-Performance Managed Applications : A Primer (in the left columns you have several good articles as well) Articles by Jeffrey Richter MSDN Magazine

                                  S Offline
                                  S Offline
                                  Stephane Rodriguez
                                  wrote on last edited by
                                  #21

                                  So much for ngen.exe and yet, how do you handle the deployment of pre-jitted apps ? Everyone agrees that ngen.exe produces an image of your managed assembly(ies) in the GAC. Now if you intend to deploy pre-jitted apps with your setup program, this does not work : - the native image must be ready-to-use in the user's GAC, not in yours. So you have to prepare additional post-install steps to start ngen on HIS machine, so it does the job. - ngen is not distributed with the .NET run-time. In other words, it is not possible to execute ngen on a client machine after a setup, since there is no such tool to play with. - I am not sure if you are allowed to redistribute the ngen.exe tool from the .NET SDK. Quite the contrary, it is even likely that ngen.exe has a few other dependencies as well. (haven't spent time to debunk this though). - And final point, before ngen.exe can produce and copy a native image into the user's GAC, it must be allowed to do so. On some client machines, especially those not being local admin, it's likely you won't be able to do such things.


                                  RSS feed

                                  1 Reply Last reply
                                  0
                                  • J J Dunlap

                                    As I said before, if you run ngen.exe on the assemblies, they will no longer need to be JIT'ed at runtime, and therefore, will run much faster.

                                    "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                                    "You must be the change you wish to see in the world." - Mahatma Gandhi

                                    I Offline
                                    I Offline
                                    igor1960
                                    wrote on last edited by
                                    #22

                                    How can I force ngen on the client? Or you are saying I should ngen it on my machine? What an advantage then? "...Ability to type is not enough to become a Programmer. Unless you type in VB. But then again you have to type really fast..." Me

                                    J 1 Reply Last reply
                                    0
                                    • I igor1960

                                      How can I force ngen on the client? Or you are saying I should ngen it on my machine? What an advantage then? "...Ability to type is not enough to become a Programmer. Unless you type in VB. But then again you have to type really fast..." Me

                                      J Offline
                                      J Offline
                                      J Dunlap
                                      wrote on last edited by
                                      #23

                                      igor1960 wrote: How can I force ngen on the client? You can run it from setup. igor1960 wrote: Or you are saying I should ngen it on my machine? It has to be ngen'ed on each computer it's installed/run on. igor1960 wrote: What an advantage then? Ngen speeds up start times, but it may actually slow things down overall, because it does not allow the compiler to do as many optimizations. However, it is useful where start times are crucial.

                                      "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                                      "You must be the change you wish to see in the world." - Mahatma Gandhi

                                      I 1 Reply Last reply
                                      0
                                      • J J Dunlap

                                        igor1960 wrote: How can I force ngen on the client? You can run it from setup. igor1960 wrote: Or you are saying I should ngen it on my machine? It has to be ngen'ed on each computer it's installed/run on. igor1960 wrote: What an advantage then? Ngen speeds up start times, but it may actually slow things down overall, because it does not allow the compiler to do as many optimizations. However, it is useful where start times are crucial.

                                        "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
                                        "You must be the change you wish to see in the world." - Mahatma Gandhi

                                        I Offline
                                        I Offline
                                        igor1960
                                        wrote on last edited by
                                        #24

                                        You can run it from setup. It has to be ngen'ed on each computer it's installed/run on. So, I should run it during install? And I thought: .NET is all about security! BTW: I'm not sure you can even distribute ngen. Ngen speeds up start times, but it may actually slow things down overall, because it does not allow the compiler to do as many optimizations. However, it is useful where start times are crucial. About optimization: Do you know what floating point support CLR uses on each particular machine? What floating point precission to use?... "...Ability to type is not enough to become a Programmer. Unless you type in VB. But then again you have to type really fast..." Me

                                        1 Reply Last reply
                                        0
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes


                                        • Login

                                        • Don't have an account? Register

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • World
                                        • Users
                                        • Groups