How to Use the Storage Emulator with the Windows Azure SDK for PHP
Join the DZone community and get the full member experience.
Join For FreeThis is a short post to address this question: How do I use the local Storage Emulator (formerly known as Development Storage) when using the Windows Azure SDK for PHP? The Windows Azure Command Line Tools for PHP provide an option for running an application locally in the Compute Emulator, but I didn’t see an option for using the local Storage Emulator. As it turns out, the answer is very simple, although somewhat difficult to find…
When constructing a new table, blob, or queue client, simply omit the constructor parameters:
// Create table, blob, and queue clients
// that use local development storage.
$tableClient = new Microsoft_WindowsAzure_Storage_Table();
$blobClient = new Microsoft_WindowsAzure_Storage_Blob();
$queueClient = new Microsoft_WindowsAzure_Storage_Queue();
Assuming you have installed all the prerequisites for using the Windows Azure SDK for PHP, that’s it. (You will
have to start the Compute Emulator and Development Storage before
testing your application.) The SDK has all the plumbing for utilizing
the Storage Emulator. (I spent quite a bit of time trying to tweak Azure
config files to get an application to use the Storage Emulator before
realizing this.)
Testing an Azure application will have multiple phases, but initially testing against the local storage will save some storage costs. For more information about developing, testing, and deploying PHP applications to Windows Azure, check out these links:
- Differences between the Compute Emulator and Windows Azure
- Differences between the Storage Emulator and Windows Azure Storage Services
- Deploying Your First PHP Application with the Windows Azure Command Line Tools for PHP
- Accessing Windows Azure Table Storage from PHP
- Accessing Windows Azure Blob Storage from PHP
- Accessing Windows Azure Queues from PHP
Thanks.
-Brian
Published at DZone with permission of Brian Swan, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments