All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jctools_voltpatches.util.JvmInfo Maven / Gradle / Ivy

There is a newer version: 13.3.2-preview1
Show newest version
package org.jctools_voltpatches.util;

public interface JvmInfo {
    int CACHE_LINE_SIZE = Integer.getInteger("jctools.cacheLineSize", 64);
    int PAGE_SIZE = UnsafeAccess.UNSAFE.pageSize();
    int CPUs = Runtime.getRuntime().availableProcessors();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy