FITFLOP
Home

garbage-collection (14 post)


posts by category not found!

Is it possible, in D, to tell the garbage collector to not scan a particular pointer (or anything below it)?

Controlling Garbage Collection in D Can You Exclude Specific Pointers Garbage collection is an essential aspect of memory management in many programming languag

3 min read 17-10-2024 27
Is it possible, in D, to tell the garbage collector to not scan a particular pointer (or anything below it)?
Is it possible, in D, to tell the garbage collector to not scan a particular pointer (or anything below it)?

How to properly clean up non-serializable states associated with a Ray object?

How to Properly Clean Up Non Serializable States Associated with a Ray Object When working with Ray a popular framework for parallel and distributed computing i

3 min read 16-10-2024 27
How to properly clean up non-serializable states associated with a Ray object?
How to properly clean up non-serializable states associated with a Ray object?

ConcurrentHashMap$Node accumulate in heap without clean by GC

Understanding the Memory Management of Concurrent Hash Maps Nodes in Java The Concurrent Hash Map in Java is a widely used thread safe collection that allows fo

3 min read 14-10-2024 32
ConcurrentHashMap$Node accumulate in heap without clean by GC
ConcurrentHashMap$Node accumulate in heap without clean by GC

How does a Span survive garbage collection?

How Does a Span Survive Garbage Collection in C Lets dive into the intriguing world of Span T in C and explore how it cleverly manages to persist despite the ev

2 min read 06-10-2024 42
How does a Span survive garbage collection?
How does a Span survive garbage collection?

Why does the gc log in my java example output this?

Understanding Your Java GC Logs Decoding the Mystery Messages Javas garbage collector GC is a vital component silently managing memory and ensuring your applica

3 min read 06-10-2024 27
Why does the gc log in my java example output this?
Why does the gc log in my java example output this?

Why does console.time/performance.measure and memory inspector don't have similar values

Unraveling the Discrepancies Understanding the Differences Between console time and Memory Inspector Understanding how your code performs is crucial for buildin

2 min read 05-10-2024 31
Why does console.time/performance.measure and memory inspector don't have similar values
Why does console.time/performance.measure and memory inspector don't have similar values

How to find out if an object is reachable by garbage collector in java?

Unraveling the Mystery How to Determine if a Java Object is Reachable by the Garbage Collector Understanding how the garbage collector works is crucial for writ

3 min read 04-10-2024 47
How to find out if an object is reachable by garbage collector in java?
How to find out if an object is reachable by garbage collector in java?

Memory leak that GC doesn't fix regarding .Net Entity Framework version 8 (C# console app .Net8.02 )

Entity Framework 8 and the Ghost of Memory Leaks A C NET 8 02 Conundrum Have you ever encountered a memory leak in your C NET application despite using the garb

3 min read 04-10-2024 35
Memory leak that GC doesn't fix regarding .Net Entity Framework version 8 (C# console app .Net8.02 )
Memory leak that GC doesn't fix regarding .Net Entity Framework version 8 (C# console app .Net8.02 )

COM processes in background - properly releasing COM objects

Keeping Your COM Objects in Check Understanding and Releasing COM Objects in the Background When working with Component Object Model COM in your applications it

3 min read 03-10-2024 30
COM processes in background - properly releasing COM objects
COM processes in background - properly releasing COM objects

.Net Memory Dump Analysis showing 5.08 GB for System.String instances

Unraveling the Mystery of High String Usage in NET Memory Dumps A 5 08 GB Case Study Have you ever encountered a NET application that unexpectedly consumes vast

3 min read 03-10-2024 36
.Net Memory Dump Analysis showing 5.08 GB for System.String instances
.Net Memory Dump Analysis showing 5.08 GB for System.String instances

ContextVar MemoryLeak

Understanding and Preventing Context Var Memory Leaks in Python Context Vars in Python are a powerful tool for managing thread local data They allow you to stor

2 min read 01-10-2024 30
ContextVar MemoryLeak
ContextVar MemoryLeak

Visual Basic Form doesn't dispose all items when asked to

Visual Basic Form Not Disposing All Items A Common Problem and Solution Imagine this you re working on a Visual Basic application and you want to close a form g

2 min read 30-09-2024 27
Visual Basic Form doesn't dispose all items when asked to
Visual Basic Form doesn't dispose all items when asked to

Does gc.collect really release memory?

Does gc collect Really Release Memory in Python Pythons garbage collector GC is a powerful tool that automatically reclaims memory occupied by objects that are

2 min read 30-09-2024 29
Does gc.collect really release memory?
Does gc.collect really release memory?

Return a fixed pointer ref in C#

Understanding Fixed Pointer References in C In C working with memory directly can be quite complex due to its managed nature However there are times when you ma

2 min read 29-09-2024 42
Return a fixed pointer ref in C#
Return a fixed pointer ref in C#