+

Search Tips   |   Advanced Search

Cache instances



An application uses a cache instance to store, retrieve, and share data objects within the dynamic cache.

Each cache instance can be configured independently for...

Objects that are stored in a particular cache instance are not affected by other cache instances. This means that if we store an object named object_1 with a value of object_data in cache_instance_x, we can also store an object with the same name, but different value in cache_instance_y.

Objects that are stored in a particular cache instance are available to applications on other servers by accessing a cache instance of the same name.

The two servers must be within the same replication domain to share data.

There are two types of cache instances...

An object cache instance is a location in addition to the default shared dynamic cache where J2EE applications can store, distribute, and share objects. To programmatically access use...

com.ibm.websphere.cache DistributedMap
com.ibm.websphere.cache DistributedObjectCache

Servlet cache instances are locations in addition to the default dynamic cache where dynamic cache can store, distribute, and share the output and the side effects of an invoked servlet. By configuring a servlet cache instance, the applications have greater flexibility and better tuning of cache resources.

The JNDI name specified for the cache instance in the admin console maps to the <cache-instance> element in the cachespec.xml configuration file. Any <cache-entry> elements specified within a <cache-instance> element are created in that specific cache instance. Any <cache-entry> elements specified outside of a <cache-instance> element are stored in the default dynamic cache instance.



Related tasks

Use the DistributedMap and DistributedObjectCache interfaces for the dynamic cache
Use object cache instances
Use servlet cache instances

 

Related

Task overview: Accessing data from applications
cachespec.xml file