-
Recent Posts
- Coding Microservice From Scratch (Part 8) | JAX-RS Done Right! | Head Crashing Informatics 73
- Speed it up by throwing it away | Maven Contribution | Java Coding | Head Crashing Informatics 72
- Speed up your I/O with Java 11 | Maven Contribution | Java Coding | Head Crashing Informatics 71
- Speed up your I/O with Java 7 | Maven Contribution | Java Coding | Head Crashing Informatics 70
- Double Performance! | OpenJDK Contrib | Java Coding | Head Crashing Informatics 69
Recent Comments
Archives
- March 2023
- February 2023
- January 2023
- December 2022
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- February 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- February 2020
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- December 2018
- November 2018
- October 2018
- September 2018
- July 2018
- May 2018
- April 2018
- March 2018
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- January 2017
- September 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- January 2015
- December 2014
- November 2014
- October 2014
- August 2014
- July 2014
- March 2014
- February 2014
- February 2011
- January 2011
- July 2010
- April 2010
- January 2010
Categories
Meta
Tag Archives: openjdk
Double Performance! | OpenJDK Contrib | Java Coding | Head Crashing Informatics 69
Yes, I really did it! My latest contribution to #OpenJDK 21 will make your #Java program drive I/O bytes up to twice as fast through your streams. If you like this video, please give it a thumbs up, share it, … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on Double Performance! | OpenJDK Contrib | Java Coding | Head Crashing Informatics 69
SequenceInputStream boosted: Latest OpenJDK Contrib | Java Coding | Head Crashing Informatics 68
If you are using SequenceInputStream, you will notice that it pulls all data into the JVM’s memory, just to drain it to another I/O sink. This is inefficient and slow. With my latest contribution contained in #OpenJDK 20, this will … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on SequenceInputStream boosted: Latest OpenJDK Contrib | Java Coding | Head Crashing Informatics 68
Small Change with BIG EFFECT | OpenJDK Contrib | Java Coding | Head Crashing Informatics 67
Contributions to #OpenJDK don’t have to be huge always. Sometimes it is the small things that have BIG EFFECT. For example if a class was intended to be non-synchronized (hence: fast), implicitly is synchronized by mistake (hence: slow), is finally … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on Small Change with BIG EFFECT | OpenJDK Contrib | Java Coding | Head Crashing Informatics 67
I boosted the PushbackInputStream | OpenJDK Contrib | Java Coding | Head Crashing Informatics 66
As #PushbackInputStream is quite similar to #BufferedInputStream, it was rather easy for me to apply the performance optimizations I already developed for BufferedInputStream to the PushbackInputStream. The contribution was accepted in November 2022, so it is now part of #OpenJDK … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on I boosted the PushbackInputStream | OpenJDK Contrib | Java Coding | Head Crashing Informatics 66
BufferedInputStream boosted AGAIN by OpenJDK Contrib | Java Coding | Head Crashing Informatics 65
Recently I boosted #BufferedInputStream by contributing to #OpenJDK. There was one case open, in which performance did not excel. Now in my new contribution to OpenJDK, which is contained in #Java 20, I fixed this – so in two thirds … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on BufferedInputStream boosted AGAIN by OpenJDK Contrib | Java Coding | Head Crashing Informatics 65
Good bye, application/svg+xml | The Two Minutes Tuesday 035 | Jakarta REST 4.0
Jakarta REST 4.0 will be backwards-incompatible, and here comes one of the first notable changes: The (actually wrong) MIME type application/svg+xml will not be provided out of the box anymore (at least eventually). If you want to use it (or … Continue reading
Posted in Allgemein
Tagged Coding, Ideas, Java, News, Open Source, openjdk, Programming, Reacts, Two Minutes
Comments Off on Good bye, application/svg+xml | The Two Minutes Tuesday 035 | Jakarta REST 4.0
You will love this new method: containsHeaderString | #JAX-RS | Head Crashing Informatics 64
One of my first contributions to the upcoming #JakartaREST 4.0 API was just merged (https://github.com/jakartaee/rest/pull/1066), so it is time to demonstrate why you will love `containsHeaderString`! If you like this video, please give it a thumbs up, share it, … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
Comments Off on You will love this new method: containsHeaderString | #JAX-RS | Head Crashing Informatics 64
BufferedInputStream boosted: Another OpenJDK Contrib | Java Coding | Head Crashing Informatics 63
Last year I contributed a performance optimization to #OpenJDK that makes I/O operations much faster. Strange but true, with existing code often it did not chime in. The reason is that BufferedInputStream was used in many existing applications, which unfortunately … Continue reading
Posted in Java, Open Source, Programming, Projects
Tagged Coding, Deep-Dive, Head Crashing, Java, JDK20, JRE, Open Source, openjdk, Programming, Review, Source Code
1 Comment
OpenJDK-Insider packt aus! | Mein Erfahrungsbericht als Contributor | Head Crashing Informatics 60
Schockierend! In diesem exklusiven #Undercover-Tatsachenbericht packe ich schonungslos aus, wie unglaublich schlimm es mir als #JRE-Contributor im #OpenJDK-Team ergangen ist. Die nackte Wahrheit, ungeschminkt und unverblümt! Das definitive MUST-SEE für jeden, der Contributor bei OpenJDK werden möchte! 😉 Bitte nehmt … Continue reading
Posted in Cons, Java, Lectures, Open Source, openjdk, Oracle, Programming, Projects, Standards
Tagged Contributor, Insider, Java, JRE, Open Source, openjdk, Report, Undercover
Comments Off on OpenJDK-Insider packt aus! | Mein Erfahrungsbericht als Contributor | Head Crashing Informatics 60
Temurin – THE Java distribution! | Head Crashing Informatics 47
#Temurin is THE #Java distribution! It is built from #OpenJDK sources by a community including LJUG, iJUG, Microsoft, Azul and lots more, backed by the Eclipse Foundation. A distribution from the community for the community. Free of license fees. Free … Continue reading
Posted in Java, Open Source, openjdk, Programming, Projects
Tagged Azul, Community, Eclipse Foundation, Java, Microsoft, Open Source, openjdk, Temurin
Comments Off on Temurin – THE Java distribution! | Head Crashing Informatics 47
You must be logged in to post a comment.