The first version of the Vector API was published as an incubator feature with the JDK 16. The JDK 22 released the 7th incubator version, and the API is now stable enough so that we can examine how it is working. The Vector API can dramatically speed up your in-memory computations, by leveraging the capabilities of the SIMD kernel (Single Instruction Multiple Data) of your CPU cores. This SIMD architecture is nothing but new, at is was developped in super computers in the 80s and the 90s. This presentation explains what is the SIMD programming, how it differs from the parallel streams, and how things are working under the hood. You will learn how you can use this API and what performance gains you may expect for your in-memory computations.