python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is onDestroy() also indicate to the Garbage collector that the Activity object should be collected?
I'm trying to understand, if a class that extends Activity has attributes, and while working with the application those attributes are being set (values are different from null), if the Activity is be...
Eitanos30
Votes: 0
Answers: 1
G1 GC allocated memory is more than heap size
I change GC for application server. Now I use G1 GC. I have 30 GB RAM. For initial testing I set only Xms and Xmx values to be the same 23040 mb.
Settings I use:
-Xms23040m -Xmx23040m -XX:+UseG1GC...

grep
Votes: 0
Answers: 2
Why does a mark & sweep collector have to stop the world and not run in parallel?
I am reading "The Garbage Collection Handbook: 2nd Edition". In the "Mark-Sweep garbage collection" page, it is mentioned that all mutator threads stop while the collector thread r...
Null
Votes: 0
Answers: 1
JavaScript class field references and garbage collection
I implemented a class that can be used to instantiate objects passed to a visitor function that detects duplicated keys in a JSON document. The problem I am trying to solve is detecting duplicate keys...
Monad
Votes: 0
Answers: 1