Click or drag to resize

CacheFactory Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Factory for the Oracle Coherence™ for .NET product.
Inheritance Hierarchy
SystemObject
  Tangosol.NetCacheFactory

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public abstract class CacheFactory

The CacheFactory type exposes the following members.

Constructors
  NameDescription
Protected methodCacheFactory
Initializes a new instance of the CacheFactory class
Top
Properties
  NameDescription
Public propertyStatic memberConfigurableCacheFactory
The IConfigurableCacheFactory singleton.
Public propertyStatic memberDefaultCacheConfig
The default XML cache configuration.
Public propertyStatic memberDefaultCacheConfigPath
The path to the default XML cache configuration.
Public propertyStatic memberDefaultCacheConfigResource
The IResource for the default XML cache configuration.
Public propertyStatic memberDefaultOperationalConfig
The default XML operational configuration.
Public propertyStatic memberDefaultOperationalConfigPath
The path to the default XML operational configuration.
Public propertyStatic memberDefaultOperationalConfigResource
The IResource for the default XML operational configuration.
Public propertyStatic memberDefaultPofConfig
The default XML POF configuration.
Public propertyStatic memberDefaultPofConfigPath
The path to the default XML POF configuration.
Public propertyStatic memberDefaultPofConfigResource
The IResource for the default XML POF configuration.
Top
Methods
  NameDescription
Public methodStatic memberConfigure(String, String)
Configure the CacheFactory.
Public methodStatic memberConfigure(IConfigurableCacheFactory, IOperationalContext)
Configure the CacheFactory.
Public methodStatic memberConfigure(IResource, IResource)
Configure the CacheFactory.
Public methodStatic memberConfigure(IXmlElement, IXmlElement)
Configure the CacheFactory.
Public methodStatic memberDestroyCache
Releases and destroys the specified INamedCache.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodStatic memberGetCache
Return an instance of a cache configured by the current ConfigurableCacheFactory.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodStatic memberGetService
Return an instance of a service configured by the current ConfigurableCacheFactory.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberIsLogEnabled
Return true if the Logger would log a message with the given log level.
Public methodStatic memberLog(Exception, CacheFactoryLogLevel)
Log an exception using Coherence logging facility which is driven by the "logging-config" element located in the coherence.xml configuration file.
Public methodStatic memberLog(String, CacheFactoryLogLevel)
Log a message using Coherence logging facility which is driven by the "logging-config" element located in the coherence.xml configuration file.
Public methodStatic memberLog(String, Exception, CacheFactoryLogLevel)
Log a message and exception using Coherence logging facility which is driven by the "logging-config" element located in the coherence.xml configuration file.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberPreprocessProp
Preprocess the Coherence properties specified either in the application configuration or environment variables. When both are specified, environment varialbe takes the precedence.
Public methodStatic memberReleaseCache
Release local resources associated with the specified instance of the cache.
Public methodStatic memberShutdown
Shutdown all services.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

One of the most common functions provided by the CacheFactory is ability to obtain an instance of a cache. There are various cache services and cache topologies that are supported by Coherence.

To get a cache reference use the GetCache(String) method.

This approach that has a lot of advantages over service type specific methods described further below because:

  • complex cache topology could be configured declaratively in the cache configuration XML rather then programmaticaly via API;
  • the caller's code could become completely generic and agnostic to the cache topology;
  • the cache topology decision could be deferred and made much later in the development cycle without changing the application code.

When a cache is no longer used, it is preferrable to call ReleaseCache(INamedCache) to release the associated resources. To destroy all instances of the cache across the cluster, use DestroyCache(INamedCache).

Other services:

  • Invocation - Invocation service provides the means for invoking and monitoring execution of classes on specified nodes across a cluster.

    The following factory method returns an instance of Invocation service:

    GetService(String)

See Also