tree: 36e00fda2accfe61e71ebaa0a0ea5f8957de11ff [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
rackspace-cloudfiles/README.md

Rackspace Cloud Files

The new Rackspace Cloud Files multi-region based service API.

This new “rackspace-cloudfiles” API supercedes the jclouds “cloudfiles” API, which will eventually be deprecated.

With this multi-region support, each BlobStore can be isolated to a specific region:

 RegionScopedBlobStoreContext ctx = 
 	contextBuilder.buildView(RegionScopedBlobStoreContext.class);

 Set<String> regionIds = ctx.configuredRegions();

 // isolated to a specific region
 BlobStore dfwBlobStore = ctx.blobStoreInRegion("DFW");
 BlobStore iadBlobStore = ctx.blobStoreInRegion("IAD");

Production ready? No