0

Is anyone aware of any caching-as-a-service offerings? Essentially, grab an SDK in your favorite language, an API key, and read and write from the cache service?

Something like:

cache = new Cache;

// read from the cache
cache->get( api_key, cache_key );

// write to the cache
cache->set( api_key, cache_key, data, expiration );

I've searched around and haven't found anything like this. I'm just curious more than anything.

djechlin
  • 59,258
  • 35
  • 162
  • 290
  • Amazon S3 and a zillion others. Voting to close as not constructive since this is actually a shopping list question. – djechlin Mar 31 '13 at 14:17

1 Answers1

1

Perhaps memcached will do the trick:

http://blog.couchbase.com/memcached-144-windows-32-bit-binary-now-available

http://en.wikipedia.org/wiki/Memcached

UPDATE

http://aws.amazon.com/elasticache/

MeTitus
  • 3,390
  • 2
  • 25
  • 49