# Cache Deprecated The Storm API client for .net has been tag:ed end of life and will be ceased to be updated and supported in roll out tests in an unspecified later date. All Storm’s API’s moves to open API standards and swagger endpoints and these old clients with dependencies to 3rd party technologies or tools will stop being supported. No specific date in set yet. The following describes how to set up caching when using the Storm API. To configure caching add the following to the unity section of your configuration file: ```XML ``` The CacheManager can handle multiple caches. Above configuration just adds support for caching to the AccessClient. If one more cache is wanted just add another method section with name=”AddCache” under the ICacheManager registration. And then add a new registration for the new cache, equal to the one named “AccessClient” above. When using a cache for the AccessClient a cache definition file must be used to define which calls to cache and how. The file must be placed in the App_Data folder of your website and named AccessClient.Cache.xml. Here’s a sample of that file: ```XML ```