Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- Using the C/C++ Garbage Collection Library, libgc
- Garbage collection deals with the automatic management of dynamic memory. One can dynamically allocate and deallocate memory by using the C++ operators new and delete as well as by using the libc functions malloc and free. This paper discusses some of the runtime errors related to memory management and how...
- Tags: Garbage Collection, Library, C/C++, Programming Languages, Software Development, Software/Web Development
- White papers
- Real-Time Java, Part 4: Real-Time Garbage Collection
- Real-Time RT application development distinguishes itself from general-purpose application development by imposing time restrictions on parts of the runtime behavior. Such restrictions are typically placed on sections of the application such as an interrupt handler, where the code responding to the interrupt must complete its work in a given time...
- Tags: Application Development, Java, Garbage Collection, Software Development, Development Tools, Middleware, Software/Web Development, Enterprise Software, Software
- White papers 2007-05-02
- MSDN Webcast: MSDN geekSpeak: .NET Garbage Collection With Jeffrey Richter (Level 200)
- The presenter of this webcast gives new insights into garbage collection in Microsoft .NET.
- Tags: Microsoft Developer Network, Webcast, Garbage Collection, Microsoft Corp., .Net, Application Servers, Digital Media, Middleware, Software Development, Software/Web Development, Enterprise Software, Software, Consumer Electronics, Personal Technology
- Webcasts 2006-11-01
- Monitor .NET application performance with the CLR Profiler
- When you notice memory issues cropping up in your .NET applications, Tony Patton advises you to turn to the freely available CLR Profiler. It allows you to take a peek under the hood of .NET applications and monitor the garbage collector heap. In the .NET Framework, memory management is...
- Tags: Microsoft .NET, CLR, Middleware, Tony Patton, .NET, Application servers, monitor, performance, garbage collection, garbage collector, memory, .NET Newsletter, Application, CLR Profiler, .NET CLR, Software Development, Software/Web Development, Enterprise Software, Software
- Technical articles 2007-01-16
- Profile-Guided Proactive Garbage Collection for Locality Optimization
- Many applications written in garbage collected languages have large dynamic working sets and poor data locality. This paper presents a new system for continuously improving program data locality at run time with low overhead. The key contributions include making a case that garbage collection should be viewed as a proactive...
- Tags: Optimization, Garbage Collection, Locality Optimization, Data Locality
- White papers 2006-06-11
- A Garbage-Collecting Typed Assembly Language
- Typed assembly languages usually support heap allocation safely, but often rely on an external garbage collector to deallocate objects from the heap, to prevent unsafe dangling pointers. Even if the external garbage collector is provably correct, verifying the safety of the interaction between TAL programs and garbage collection is still...
- Tags: Garbage Collection, Assembly Language, Garbage Collector
- White papers 2006-02-10
- Monitor .NET application performance with the CLR Profiler
- In the .NET Framework, memory management is supposed to be handled automatically by the system. This allows you to concentrate on the important issues of application designand development. Unfortunately, this utopia has not been completely realized asmemory issues still appear in .NET-based applications. This article examinesone tool?the CLR (Common Language...
- Tags: CLR, collector, garbage collection, garbage collector, Memory, Microsoft .NET, monitor, Software engineering/development, Tony Patton
- Technical articles 2007-01-16
- Tiff Inserter (exe)
- This program lets you pick a directory that contains the target files, lets you select an image to insert and gives the user the opportunity to insert the TIFF image at a specified point within the file. The GC option is to use the garbage collection function, which is useful...
- Tags: Garbage Collection, Image, GC Option
- Software downloads 2005-10-07
- Garbage Collection in the BlackBerry Java Development Environment
- To understand proper memory management techniques, one must understand how the garbage collection system works on BlackBerry Wireless Handhelds. The garbage collection system removes unnecessary objects at key times, which enables the system to function at an optimal level. A RAM garbage collection removes unreferenced objects from RAM. A persistent...
- Tags: Environment, Garbage Collection, RIM BlackBerry, Development Environment, Garbage Collection System, RAM Garbage Collection, Emergency Garbage Collection
- White papers 2005-03-17
- Garbage collection tuning in Java 5.0 is a breath of fresh air
- Memory management is a major factor that affects softwareapplication performance. More time is usually spent allocating and deallocatingmemory than performing actual data computation.While C++ offers direct control over when memory isallocated and freed up, Java attempts to abstract memory management by usinggarbage collection to reclaim memory that the program no...
- Tags: garbage collection, Java, memory, Peter V. Mikhalenko
- Technical articles 2006-08-23
- DataTable offers .NET developers a resource-friendly option
- Great technique but are there noticeable..performance benefits? Given that .NET has grabage collection built-in, even applications with thousands of classes and methods making use of DataSets' will be efficientgiven that these and any objects are destroyedby the runtime once out of execution scope.What are your thoughts on this?cheers, SteveFWhile garbage...
- Tags: Dataset, DataTable, DataTables, garbage collection, Microsoft .NET, performance, programming, response to article, stevef199
- Discussion threads 2006-01-31
- A Comparative Evaluation of Parallel Garbage Collector Implementations
- While uniprocessor garbage collection is relatively well understood, experience with collectors for large multiprocessor servers is limited and it is unknown which techniques best scale with large memories and large numbers of processors. In order to explore these issues the paper designed a modular garbage collection framework in the IBM...
- Tags: Garbage Collection
- White papers 2003-05-09
- Answers: Security and Garbage Collection
- It was a very busy week and weekend for me so instead of finishing the database links article I'm writing, I thought I would try to answer some questions that have been posted to some of my past articles....This post originally appeared on an external website
- Tags: garbage collection, security
- Blog posts 2005-12-11
- Code optimization: Memory management in .NET, part 1
- The .NET Framework provides memory management techniques that differ from the way memory management worked in a COM-based world. The memory management in COM was through reference counting. .NET provides an automatic memory management technique that involves reference tracing. In this article, we'll take a look at the garbage collection...
- Tags: .NET, Middleware, Microsoft .NET, Circular Reference, Microsoft .NET Framework, S. Vikram, memory, memory management, garbage collection, garbage collector
- Technical articles 2003-12-05
- Get your grade for the Java Pop Quiz
- We recently challenged you to test your basic Java skills with a short pop quiz. Find out how you fared compared with other Builder.com members and learn why the correct answers are, in fact, correct.In October, we threw a Java basics Pop Quiz at all our Java neophytes. Quite a...
- Tags: Programming languages, Lamont Adams, Java, garbage collection, static method
- Technical articles 2002-11-26
- A guide to automatic garbage collection systems
- Java and .NET feature automatic garbage collection, which allows the developer to worry about programming instead of system cleanup. Learn more about the approaches often used to add this feature to applications.Automatic memory management allows the developer to focus on application logic (e.g., payroll, solving math problems) instead of innate...
- Tags: Engineering, Programming languages, garbage, algorithm, memory, memory management, garbage collection, Java
- Technical articles 2002-10-01
- Clean up your ADO.NET mess to ensure good application performance
- While much has been written about how easy ADO.NET makes it to access data from a variety of data sources, there are things to which you must pay attention to maintain good application performance. One of these is the proper termination and cleanup of ADO.NET objects to be certain that...
- Tags: .NET, Databases, Microsoft .NET Framework, Baseline Inc., Microsoft ADO.NET, garbage collection, database connection, database, Microsoft SQL Server
- Technical articles 2003-04-14
- Manage memory effectively with Java reference objects
- Ask any Java programmer to name the four best features of the Java language, and he’ll probably say something about automatic garbage collection—the process the JVM uses to detect objects that are no longer in use and reclaim their memory. Java’s garbage collection eliminates the potential for a number of...
- Tags: Programming languages, Alexandre Pereira Calsavara, Java, garbage collection, reference object
- Technical articles 2003-03-10
- Taking out the Active Directory trash
- As you know, Active Directory is basically one big database. To keep it tuned properly, you must maintain it like any normal database. In this Daily Feature, Jim Boyce shows you how Active Directory reacts when you delete records from it.The size of Active Directory AD depends on the number...
- Tags: Directory services, Jim Boyce, garbage collection, tombstone lifetime, Microsoft Windows Active Directory, garbage collection interval, database
- Technical articles 2001-04-18
- << Previous
- page 1 of 1
- Next >>