What is Garbage collection in JIRA?

sandhya May 17, 2015
 

3 answers

1 accepted

0 votes
Answer accepted
Azfar Masut May 18, 2015

Garbage collection is an automatic memory management feature in many modern programming languages, such as Java. JIRA was built using Java platform thus, using this function.

Garbage Collection (GC) is the systematic recovery of pooled computer storage that is being used by JIRA when JIRA no longer needs the storage. This frees the storage for use by other programs (or processes within JIRA). It also ensures that a program using increasing amounts of pooled storage does not reach its quota (in which case it may no longer be able to function).

 

0 votes
MattS
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 18, 2015

You'll find many other descriptions by using Google to search for "garbage collection"

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 17, 2015

It's not actually a JIRA function, JIRA is just showing you what the java virtual machine is doing.   http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/gc01/index.html is worth a quick read (especially the "describing garbage collection" bit

Suggest an answer

Log in or Sign up to answer