Click here to Skip to main content
15,881,709 members
Articles / Hosted Services / Azure

Using Windows Azure AppFabric Cache (CTP)

Rate me:
Please Sign up or sign in to vote.
4.96/5 (12 votes)
16 Feb 2011CPOL6 min read 58.6K   511   20  
How to setup and use Windows Azure AppFabric Cache (CTP).
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="dataCacheClient" type="Microsoft.ApplicationServer.Caching.DataCacheClientSection, Microsoft.ApplicationServer.Caching.Core"
        allowLocation="true" allowDefinition="Everywhere"/>
  </configSections>

  <dataCacheClient deployment="Simple">
    <hosts>
      <host name="YOUR_NAMESPACE.cache.appfabriclabs.com" cachePort="22233" />
    </hosts>

    <securityProperties mode="Message">
      <messageSecurity
          authorizationInfo="YOUR_SECRET_KEY">
      </messageSecurity>
    </securityProperties>
  </dataCacheClient>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer
Belgium Belgium
Panagiotis is a Software Development Consultant & Architect and Trainer. He has been a speaker at domestic and international events such TechEd and ITProDevConnections, delivering trainings and consulting on cloud computing and the Windows Azure Platform for almost 3 years. He also has experience with other cloud platforms like AWS, Google Gears and others. He's a supporter of the EuroCloud movement, likes Pizza, Sushi and fast cars. Born and raised in Greece but currently living and working at Belgium for Devoteam BE.

Panagiotis is a Windows Azure MVP.

Comments and Discussions