Stories recently tagged with 'Memory'

VMMap - awesome memory analysis tool(msdotnetsupport.blogspot.com)

submitted by duttavrhotmailduttavrhotmail(344) 1 year, 2 months ago

VMMap is a process virtual and physical memory analysis utility. read more...

add a comment |category: |Views: 27

tags: another

DateTime.Now Causes Boxing(blog.liranchen.com)

submitted by lirancliranc(190) 1 year, 6 months ago

Have you known that every time you call DateTime.Now the BCL causes a dynamic memory allocation due to unnecessary boxing? This post dives into the implementation of the property, explain why this boxing occurs, and what can we do to in order to avoid id read more...

add a comment |category: |Views: 14

tags: another

Jetbrains DotTrace Discount Profiler (web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 10 months ago

I have been able to secure a 10% Discount Coupon for Jet Brains DotTrace .NET Memory Profiler for readers of my blog. I have been using Dot Trace for some time now and find it invaluable for tracking down memory leaks and potential performance bottlenecks in your code. read more...

2 comments |category: |Views: 299

tags: another

Pushing the Limits of Windows: Physical Memory(blogs.technet.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 6 months ago

This is the first blog post in a series I'll write over the coming months called Pushing the Limits of Windows that describes how Windows and applications use a particular resource, the licensing and implementation-derived limits of the resource, how to measure the resource’s usage, and how to diagnose leaks. To be able to manage your Windows systems effectively you need to understand how Windows manages physical resources, such as CPUs and memory, as well as logical resources, such as virtual memory, handles, and window manager objects. Knowing the limits of those resources and how to track their usage enables you to attribute resource usage to the applications that consume them, effectively size a system for a particular workload, and identify applications that leak resources. read more...

add a comment |category: |Views: 9

tags: another

Increasing the Size of your Stack (.NET Memory Management: Part 3) (atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 9 months ago

Following from my previous post on the topic of stack allocation, in this post I talk about three different ways to change a thread's stack size in C#. Each of these techniques have advantages and disadvantages which I discuss as well. This post may also be of interesting to those learning about PInvoke or modifying the binary header. read more...

add a comment |category: |Views: 121

tags: another

How to: Optimize the memory usage with strings(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 3 years, 10 months ago

System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. read more...

add a comment |category: |Views: 53

tags: another

Measure memory consumption of creating object in C#(saftsack.fs.uni-bayreuth.de)

submitted by dun3dun3(360) 4 years ago

Measure memory consumption of creating object or executing functions in C# A detailed look at benchmarking the memory footprint and the execution speed of functions. read more...

2 comments |category: |Views: 458

tags: another

String Concatenation vs Memory Allocation(blog.cumps.be)

submitted by CumpsDCumpsD(360) 4 years, 4 months ago

Over the years, plenty has been written about string performance, lots of comparisons between String.Concat and StringBuilder. Today I decided to do some of my own research into the subject and contribute to the knowledge already out there. More specifically, I'll be taking a look at the memory usage for various concatenation methods. read more...

3 comments |category: |Views: 73

tags: another

Managing unmanaged memory (rajkwatra.blogspot.com)

submitted by rajkwatrarajkwatra(245) 4 years, 8 months ago

The title of this post might seem confusing. Garbage Collector (or GC) in .Net is designed to take care of managed memory only, so what do you do in a case where you have a managed object that itself takes very small amount of memory but allocates significant amount of unmanaged resources? In that case.... read more...

add a comment |category: |Views: 11

tags: another

Developers Memory Problems with C++(neo-official.blogspot.com)

submitted by Neo_4583Neo_4583(100) 5 years, 3 months ago

I have described some problems that meet any c++ developer and how get over it, read more...

add a comment |category: |Views: 2

tags: another

Event Properties - Memory Efficient Events(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 3 months ago

Description of how to define events in a more memory efficient way. read more...

add a comment |category: |Views: 25

tags: another

Memory in .NET - what goes where(yoda.arachsys.com)

submitted by simonebsimoneb(5450) 5 years, 6 months ago

A lot of confusion has been wrought by people explaining the difference between value types and reference types as "value types go on the stack, reference types go on the heap". This is simply untrue (as stated) and this article attempts to clarify matters somewhat. read more...

add a comment |category: |Views: 1

tags: another