Mr. Andrey
Mr. Andrey

Reputation: 21

When will the Java VM support the Garbage First (G1) Collector for Linux ARM?

I am currently developing project which involves running a system on ARM, using java as the main execution language. Unfortunately Java 7 VM does not support the G1 gc for ARM boards, but I have not found anything about G1 support on ARM in Java 8. When building a system which needs to respond very consistently and fast, is having a garbage collector a potential problem. I try to tune CMS gc and i get bad results. Young generation pauses is about 50-100 ms.

Upvotes: 1

Views: 995

Answers (1)

Stephen C
Stephen C

Reputation: 718986

According to this page, the G1 collector has been available for the embedded ARM version of Java since Java 1.8.0u6.

Upvotes: 2

Related Questions