Skip to content

API Library MemCacheD

Robert Polak edited this page Jul 24, 2019 · 24 revisions

Home / API Library / MemCacheD

API Library MemCacheD

API Library MemCacheD handling Memory Cache based on the Enyim client. The API Library MemCacheD Methods list with Parameters, Return examples.

Configuration

Configuration- Details

Configuration of MemCacheD variables at App.config.

<configuration>
	<AppSettings>
		<!-- MemCacheD - Switch on [TRUE] or off [FALSE] the MemCacheD -->
		<add key="API_MEMCACHED_ENABLED" value="FALSE" />
		<!-- MemCacheD - Maximum validity in number of seconds that MemCacheD can handle (30 days = 2592000) -->
		<add key="API_MEMCACHED_MAX_VALIDITY" value="2592000" />
		<!-- MemCacheD - Salsa code to isolate the cache records form other applications or environments -->
		<add key="API_MEMCACHED_SALSA" value="subdomain.domain.extension" />		
	</AppSettings>
</configuration>

Send

Send - Details

Handling MemCacheD based on the Enyim client. Returns void

Method: API.MemCacheD.Send

Parameters: template

Name Type Default Description
template String Properties.Resources.MemCacheD default template

Return: void

Clone this wiki locally