|
|
|
|
|
by astrange
1650 days ago
|
|
No amount of $ spent on JITs and garbage collection can solve the problem that Java was designed with no respect for memory use. It just doesn’t have the features (such as but not limited to value types) that let you save memory. They’re adding value types of course, but I haven’t looked at how exactly they’ll work. |
|
Java also tries to optimize out method dispatch, so we can use it freely where Go might tend to avoid it.