SlideShare a Scribd company logo
Windows Azure Caching
Pavlo Revenkov
EPAM Cloud Computing Competency Center
Email: pavlo_revenkov@epam.com
Skype: rp_risingstar
Caching services 2
CDN
• Delivering a “heavy” content closer to end user
Caching
• Storing frequently accessed data closer to Windows Azure application:
• Dedicated role
• Co-location
Shared caching
• Dedicated multi-tenant service
Blob
Content Delivery Network 3
Blob
Main characteristics 4
Dedicated endpoint
• To work through the CDN you need to change storage services
endpoint to CDN endpoint.
Dedicated billing
• CDN usage is billable separately from storage services billing
World wide
• More than 20 CDN datacenters around the world
Content Delivery Network
CDN datacenters 5
Caching 6
Two configuration models:
• Dedicated role
• Co-location
“Pay-as-you-go” only for compute resources
Several logical named caches
Ability to store session state and page output objects
Caching
7Visual Studio configuration
else
{
cache.Put(object);
}
var cacheFactory = new DataCacheFactory();
var cache = cacheFactory.GetDefaultCache();
var сache = cacheFactory.GetCache("mycache");
var item = cache.Get("item");
if (item == null)
{
cache.Add("item", object);
}
8Workflow
Demo 9
References 10
How to use Windows Azure Caching
• https://www.windowsazure.com/en-us/develop/net/how-to-guides/cache/
Using Windows Azure CDN
• https://www.windowsazure.com/en-us/develop/net/common-tasks/cdn/
Differences between caching on-premises and in the cloud
• http://msdn.microsoft.com/en-us/library/windowsazure/gg185678.aspx
Questions? 11

More Related Content

PPTX
Windows Azure Drive
PPTX
MS Cloud Day - Building web applications with Azure storage
PPTX
Microsoft Azure Media Services
PPTX
Azure Recovery Services
PDF
caching2012.pdf
PPTX
Windows Azure Blob Storage
PPTX
Storage Services
PPTX
IaaS: Windows Azure Virtual Machines
Windows Azure Drive
MS Cloud Day - Building web applications with Azure storage
Microsoft Azure Media Services
Azure Recovery Services
caching2012.pdf
Windows Azure Blob Storage
Storage Services
IaaS: Windows Azure Virtual Machines

What's hot (20)

PPTX
Windows Azure Virtual Machines
PPTX
Windows Azure Virtual Machines And Virtual Networks
PPTX
Azure Storage Performance
PPTX
Azure IaaS
PPTX
Windows Azure Drive
PPTX
Windows Azure Storage – Architecture View
PPTX
SQL Azure
PDF
Azure Virtual Machines Deployment Scenarios
PPTX
Sql saturday azure storage by Anton Vidishchev
PPTX
Keynote - Silicon Valley Cloud Computing User Group Meet - April 2011 - Srira...
PPTX
Azure storage
PPTX
Azure Data Storage
ODP
Bcache and Aerospike
PPTX
Windows Azure Virtual Machines
PPT
A complete guide to azure storage
PPTX
Azure storage
PDF
Scaling drupal on amazon web services dr
PPTX
Mini training - Introduction to Microsoft Azure Storage
PDF
Mongo db world 2014 nyc mongodb on azure - tips tricks and examples
PDF
Getting Started with Alluxio + Spark + S3
Windows Azure Virtual Machines
Windows Azure Virtual Machines And Virtual Networks
Azure Storage Performance
Azure IaaS
Windows Azure Drive
Windows Azure Storage – Architecture View
SQL Azure
Azure Virtual Machines Deployment Scenarios
Sql saturday azure storage by Anton Vidishchev
Keynote - Silicon Valley Cloud Computing User Group Meet - April 2011 - Srira...
Azure storage
Azure Data Storage
Bcache and Aerospike
Windows Azure Virtual Machines
A complete guide to azure storage
Azure storage
Scaling drupal on amazon web services dr
Mini training - Introduction to Microsoft Azure Storage
Mongo db world 2014 nyc mongodb on azure - tips tricks and examples
Getting Started with Alluxio + Spark + S3
Ad

Similar to Windows Azure Caching (20)

PPTX
More Cache for Less Cash
PPTX
More Cache for Less Cash (DevLink 2014)
PPTX
How to scale up, out or down in Windows Azure - Webinar
PPTX
Caching in Windows Azure
PPTX
Window Azure Cache
PPTX
Windows azure storage devcon2011
PPTX
Steve marx-sic-2011
PPTX
Reducing latency on the web with the Azure CDN - DevSum - SWAG
PPTX
Microsoft Azure Hybrid Cloud - Getting Started For Techies
PPTX
Sky High With Azure
PDF
AZ-204: Monitor, Troubleshoot & Optimize Azure Solutions
PPT
Microsoft Azure a cloud computing platform
PDF
How to scale up, out or down in Windows Azure
PPTX
Microsoft-Azure-Overvi2222222222222ew.pptx
PPTX
Windows Azure Platform Overview
PPTX
Reducing latency on the web with the Azure CDN- TechDays NL 2014
PPTX
Gaming across multiple devices
PPTX
Microsoft Partner Roadshow - To the Cloud
PPTX
Azure and Umbraco CMS
PPTX
ASP.NET 4.0 Cache Extensibility
More Cache for Less Cash
More Cache for Less Cash (DevLink 2014)
How to scale up, out or down in Windows Azure - Webinar
Caching in Windows Azure
Window Azure Cache
Windows azure storage devcon2011
Steve marx-sic-2011
Reducing latency on the web with the Azure CDN - DevSum - SWAG
Microsoft Azure Hybrid Cloud - Getting Started For Techies
Sky High With Azure
AZ-204: Monitor, Troubleshoot & Optimize Azure Solutions
Microsoft Azure a cloud computing platform
How to scale up, out or down in Windows Azure
Microsoft-Azure-Overvi2222222222222ew.pptx
Windows Azure Platform Overview
Reducing latency on the web with the Azure CDN- TechDays NL 2014
Gaming across multiple devices
Microsoft Partner Roadshow - To the Cloud
Azure and Umbraco CMS
ASP.NET 4.0 Cache Extensibility
Ad

More from Pavel Revenkov (11)

PPTX
Windows Azure PowerShell CmdLets
PPTX
Windows Azure Active Directory
PPTX
Windows Azure Versioning Strategies
PPTX
Windows Azure Zero Downtime Upgrade
PPTX
Windows Azure Service Bus
PPTX
Windows azure start
PPTX
SQL Azure Federations
PPTX
Windows Azure PowerShell Cmdlets
PPTX
Starting with windows azure
PPTX
Windows Azure Service Bus
PPTX
Windows Azure Storage services
Windows Azure PowerShell CmdLets
Windows Azure Active Directory
Windows Azure Versioning Strategies
Windows Azure Zero Downtime Upgrade
Windows Azure Service Bus
Windows azure start
SQL Azure Federations
Windows Azure PowerShell Cmdlets
Starting with windows azure
Windows Azure Service Bus
Windows Azure Storage services

Windows Azure Caching

  • 1. Windows Azure Caching Pavlo Revenkov EPAM Cloud Computing Competency Center Email: pavlo_revenkov@epam.com Skype: rp_risingstar
  • 2. Caching services 2 CDN • Delivering a “heavy” content closer to end user Caching • Storing frequently accessed data closer to Windows Azure application: • Dedicated role • Co-location Shared caching • Dedicated multi-tenant service
  • 4. Main characteristics 4 Dedicated endpoint • To work through the CDN you need to change storage services endpoint to CDN endpoint. Dedicated billing • CDN usage is billable separately from storage services billing World wide • More than 20 CDN datacenters around the world
  • 6. Caching 6 Two configuration models: • Dedicated role • Co-location “Pay-as-you-go” only for compute resources Several logical named caches Ability to store session state and page output objects
  • 8. else { cache.Put(object); } var cacheFactory = new DataCacheFactory(); var cache = cacheFactory.GetDefaultCache(); var сache = cacheFactory.GetCache("mycache"); var item = cache.Get("item"); if (item == null) { cache.Add("item", object); } 8Workflow
  • 10. References 10 How to use Windows Azure Caching • https://www.windowsazure.com/en-us/develop/net/how-to-guides/cache/ Using Windows Azure CDN • https://www.windowsazure.com/en-us/develop/net/common-tasks/cdn/ Differences between caching on-premises and in the cloud • http://msdn.microsoft.com/en-us/library/windowsazure/gg185678.aspx