Here is my code using the Cache that IS working
string GetCache()
{
DataCacheFactory cacheFactory = new DataCacheFactory();
DataCache cache = cacheFactory.GetDefaultCache();
cache.Put("item", "value");
var r = (string)cache.Get("item");
return r;
}