Is there some configuration on the number of threads can improve get performance

public V get() throws InterruptedException, ExecutionException {
    return sync.get();
}
private final boolean parkAndCheckInterrupt() {
    LockSupport.park(this);
    return Thread.interrupted();
}

--