This commit is contained in:
Inaki Fernandez
2022-01-10 09:38:15 +01:00
parent 14c1a39bfb
commit 3d2641dcb3
73 changed files with 407 additions and 30 deletions

View File

@@ -1,4 +1,5 @@
# Java and Memory Management
- [Introduction](#introduction)
- [Java Performance Optimization](#java-performance-optimization)
- [Java on Kubernetes. Java Memory Arguments for Containers](#java-on-kubernetes-java-memory-arguments-for-containers)
- [Benchmarking modern Java Virtual Machines and the next-generation garbage collectors](#benchmarking-modern-java-virtual-machines-and-the-next-generation-garbage-collectors)
@@ -15,6 +16,9 @@
- [Slides](#slides)
- [Tweets](#tweets)
## Introduction
- [javarevisited.blogspot.com: 10 Things Java Programmers Should Learn in 2022](https://javarevisited.blogspot.com/2017/12/10-things-java-programmers-should-learn.html)
## Java Performance Optimization
* [DZone refcard: java performance optimization 🌟](https://dzone.com/refcardz/java-performance-optimization) Tools and Techniques for Turbocharged Apps
- [DZone: String Concatenation's Effect on Performance](https://dzone.com/articles/string-concatentions-effect-on-performance) Dont use the string concatenation operator to combine more than a few strings unless performance is irrelevant. Use StringBuilders append method instead.