Hacker News new | ask | show | jobs
by soberhoff 2897 days ago
Are you familiar with Java? If you use just `"foo"`, then the string will be interned and reused. If you use `new String("foo")`, each call creates a new copy on the heap. This call was inside a very hot loop, thus eating almost all the application's runtime.
1 comments

Thanks a lot for your explanation.