-
Recent Posts
- More Performance! | OpenJDK Contrib | Java Coding | Head Crashing Informatics 78
- Coding Microservice From Scratch (Part 12) | JAX-RS Done Right! | Head Crashing Informatics 77
- Coding Microservice From Scratch (Part 11) | JAX-RS Done Right! | Head Crashing Informatics 76
- Coding Microservice From Scratch (Part 10) | JAX-RS Done Right! | Head Crashing Informatics 75
- Coding Microservice From Scratch (Part 9) | JAX-RS Done Right! | Head Crashing Informatics 74
Recent Comments
Archives
- May 2023
- April 2023
- 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: performance
SCARY Performance! – record.hashCode() | Head Crashing Informatics 61
`record` is a cool and comfortable keyword in #Java, as it does a lot of things for you. But is the resulting code really FAST? This video reveals SCARY performance! If you like this video, please give it a thumbs … Continue reading
Posted in Java, Programming
Tagged hashCode, Java, performance, record
Comments Off on SCARY Performance! – record.hashCode() | Head Crashing Informatics 61
I DOUBLED InputStream Performance! | The Two Minutes Tuesday 029 | Java Inside
I was asked how far my contribution to #OpenJDK is: While I am still working on edge cases, performance of InputStream::transferTo is already doubled (!!!) and I think that in one of my next videos I can show you the … Continue reading
Posted in Java, Open Source, Programming, The Two Minutes Tuesday
Tagged Coding, Head Crashing, InputStream::transferTo, Java, nio, openjdk, performance, Programming
Comments Off on I DOUBLED InputStream Performance! | The Two Minutes Tuesday 029 | Java Inside
Boosting InputStream::transferTo Performance | The Two Minutes Tuesday 025 | Java Inside
As I explained in a recent video (https://youtu.be/qgDfZgreN40), InputStream::transferTo() is the most comfortable way to tell java we want to transfer the remaining content of one stream into another stream, but that it apparently is the slowest one, too! The … Continue reading
Posted in Java, Open Source, Programming, The Two Minutes Tuesday
Tagged Coding, Head Crashing, InputStream::transferTo, Java, openjdk, performance, Programming
Comments Off on Boosting InputStream::transferTo Performance | The Two Minutes Tuesday 025 | Java Inside
Java File I/O Performance Shootout | Modern Java | Head Crashing Informatics 32
Java’s way to access files changed a lot in past generations, and as files play an essential role in many #Java applications, it is time to look into the #Performance of the different API’s available for #FileIO: How does good … Continue reading
Posted in Java, Open Source, Programming
Tagged Coding, Files, Head Crashing, I/O, Java, Java 16, Java 8, performance, Programming, Tutorial
Comments Off on Java File I/O Performance Shootout | Modern Java | Head Crashing Informatics 32
Stuttering Performance! | The Two Minutes Tuesday 024 | Informatics
Ever wondered why #performance is not scaling linear, but more like in steps? This episode of #TheTwoMinutesThuesday explains why! Watching your computer copying large files you will notice that the overall progress is everything but smooth nor linear! Some data … Continue reading
Posted in Hardware, Programming, Science, The Two Minutes Tuesday
Tagged Coding, computer engineering, Ideas, informatics, News, performance, Programming, Reacts, Two Minutes
Comments Off on Stuttering Performance! | The Two Minutes Tuesday 024 | Informatics
Migration Path to JDK 16 | The Two Minutes Tuesday 020 | Modern Java
Migrate to #JDK16 NOW! #Java 16 is here since last week, and there is no excuse to stay with any older versions! There is a simple four-steps migration path to more speed, more performance, more fun! If you like this … Continue reading
Posted in Java, Open Source, Programming, The Two Minutes Tuesday
Tagged Coding, Ideas, Java, JDK16, modern Java, News, performance, Programming, Reacts, Two Minutes
Comments Off on Migration Path to JDK 16 | The Two Minutes Tuesday 020 | Modern Java
Java Performance Shootout: Foreign Linker vs JNI | Modern Java | JDK16 | Head Crashing Informatics 28
Hey guys! How’s it going? The #ForeignLinkerAPI, which is in incubation in #JDK16, was announced to be as fast as, OR EVEN FASTER AS, #JNI (#JavaNativeInterface, the sole OFFICIAL way to call native code from Java). But how looks the … Continue reading
Posted in Jakarta EE, Java, Programming, Standards
Tagged DLL, glue code, Head Crashing, Java, Java 16, JDK 16, JNA, JNI, modern Java, native calls, performance, win32, Windows API
Comments Off on Java Performance Shootout: Foreign Linker vs JNI | Modern Java | JDK16 | Head Crashing Informatics 28
Java Startup Performance
Hey guys! How’s it going? One of the major pain points even with the latest Java generation is its terribly slow startup time. There are things that you can do to improve it, so here is how to do them … Continue reading
Posted in Jakarta EE, Java, Programming, Standards
Tagged Head Crashing, Java, performance, Tutorial
Comments Off on Java Startup Performance
You lose out Performance! – The Two Minutes Tuesday 004
Hey guys! You’re still using years-old Java versions? Then you definitively lose out performance! CU!
Posted in The Two Minutes Tuesday
Tagged Java, performance, Two Minutes
Comments Off on You lose out Performance! – The Two Minutes Tuesday 004
CompletableFuture in I/O-bound applications
Hardware access needs long time Applying reactive programming to improve performance by utilizing all CPU cores became rather easy with Java 8 thanks to CompletableFuture. This is nice when an application is mostly CPU-bound, i. e. when it performs in-memory operations. But … Continue reading
Posted in Allgemein, Java, Programming
Tagged async, completablefuture, nio, performance
Comments Off on CompletableFuture in I/O-bound applications
You must be logged in to post a comment.