...
The following is a sample cache configuration file cacheconfig.properties (as per the name given in the default descriptor):
Code Block | ||
---|---|---|
| ||
# The Cache Configuration xml path
# Provide the path to the cache configuration file name (loadable through class path)
CACHE_CONFIG_FILE = cacheconfig.xml
# Provide the path to the Eh Cache configuration file name (loadable through class path)
EHCACHE_CONFIG_FILE = CTEhcache.xml
# This indicates the nature of proxy to be used for the Cache to connect to its handler.
# Possible values are:
# 'local' - indicates a co-deploymnet. Just connect directly.
# 'remote' - indicates that the data builder is on a remote VM and needs a EJB call.
# 'http' - same as remote except that the remote hop is done using a Http call instead of EJB.
CACHE_PROXY_MODE = local |
...