JSR 133 (Java Memory Model) FAQ

What is a memory model, anyway?

In multiprocessor systems, processors generally have one or more layers of memory cache, which improves performance both by speeding access to data (because the data is closer to the processor) and reducing traffic on the shared memory bus (because many memory operations can be satisfied by local caches.) Memory caches can improve performance tremendously, but they present a host of new challenges. What, for example, happens when two processors examine the same memory location at the same time? Under what conditions will they see the same value?

Read More: http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html

Thanks

Leave a Reply

You must be logged in to post a comment.