Advantages of JVM memory over third party memory:
Advantages of third party memory over JVM memory:
Most of the technology selectors use either Memcached or Redis and there are several open source APIs with several languages to work with.
Related Topics:
THIRD PARTY MEMORY VS JVM MEMORY
MULTICORE ARCHITECTURE AND SOA
MULTITHREADING AND MULTICORE CPU
JAVA CONCURRENCY - PERFORMANCE BOOST
Java 5 Executor Framework
Concurrency: Callable and Future
- JVM memory is faster (no network).
- JVM memory won’t require serialization, you have Java objects available to you.
Advantages of third party memory over JVM memory:
- It can be accessed by more than one application server, so your cache will be shared among all your app servers.
- It can be accessed by a variety of different servers, so long as they all agree on the key scheme and the serialization.
- It will discard expired cache values, so you get time-based invalidation.
Most of the technology selectors use either Memcached or Redis and there are several open source APIs with several languages to work with.
Related Topics:
THIRD PARTY MEMORY VS JVM MEMORY
MULTICORE ARCHITECTURE AND SOA
MULTITHREADING AND MULTICORE CPU
JAVA CONCURRENCY - PERFORMANCE BOOST
Java 5 Executor Framework
Concurrency: Callable and Future
0 comments:
Post a Comment