Golang : Ways to recover memory during run time.
Problem :
Most program written with Golang should have automatic garbage collection to recover the used memory. However, there are times when your program process large amount of data in memory or run for a long time and you want to trigger garbage collection manually. How to do that ?
Solution :
Use runtime/debug.FreeOSMemory()
function or runtime.GC()
function.
Chances are ... your code will be compiled into a binary and deployed at a server. It will be great if your program can accept parameter such as at what time to trigger a manual garbage collection. Time such as ... when everyone is asleep or off peak hours.
NOTE : Many years ago when I was a sys admin in Vodafone New Zealand. The Java program that I was looking after will trigger a garbage collection during peak office hours... effectively locking out every users for 45 to 70 minutes! The only way to shorten the process ... is to reboot the server! As a developer, it is your responsibility to ensure manual garbage collection does not run for long time(less than 1 minute) and create bad user experience.
References :
See also : Golang : Get number of CPU cores
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.7k Golang : Sort and reverse sort a slice of floats
+28.3k Golang : Connect to database (MySQL/MariaDB) server
+25.8k Golang : missing Mercurial command
+8.1k Findstr command the Grep equivalent for Windows
+21.4k Golang : How to force compile or remove object files first before rebuild?
+7.4k Golang : Accessing dataframe-go element by row, column and name example
+9.1k Golang : Build and compile multiple source files
+7.9k Golang : Getting Echo framework StartAutoTLS to work
+16.5k Golang : Check if a string contains multiple sub-strings in []string?
+8.8k Golang : Random integer with rand.Seed() within a given range
+12.7k Golang : Exit, terminating or aborting a program
+6.6k PHP : Shuffle to display different content or advertisement