Interface IMemcacheServiceFactory
public interface IMemcacheServiceFactory
The factory by which users acquire a handle to the MemcacheService.
-
Method Summary
Modifier and TypeMethodDescriptiongetAsyncMemcacheService(String namespace) Similar togetMemcacheService(String)but returns a handle to an asynchronous version of the cache service.getMemcacheService(String namespace) Gets a handle to the cache service, forcing use of specific namespace.
-
Method Details
-
getMemcacheService
Gets a handle to the cache service, forcing use of specific namespace.Although there is only one actual cache, an application may make as many
MemcacheServiceinstances as it finds convenient. If using multiple instances, note that the error handler established withBaseMemcacheService.setErrorHandler(ErrorHandler)is specific to each instance.- Parameters:
namespace- if notnullforces the use ofnamespacefor all operations inMemcacheService. Ifnamespaceisnull- createdMemcacheServicewill use current namespace provided byNamespaceManager.get().- Returns:
- a new
MemcacheServiceinstance.
-
getAsyncMemcacheService
Similar togetMemcacheService(String)but returns a handle to an asynchronous version of the cache service.
-