Here are there responses that were returned. boolean values that are returned when the set completes



this is the long test - did it set correctly? -

this is the String test - did it set correctly? -

this is the Integer test - did it set correctly? -

this is the Array test - did it set correctly? -

this is the Struct test - did it set correctly? -

this is the query test - did it set correctly? -
--------------------------------------------------------

this is the long test - did we retrieve it correctly? -

this is the string test - did we retrieve it correctly? -

this is the integer test - did we retrieve it correctly? -

this is the array test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the struct test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the query test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the stats test - // keyList = structKeylist(test7); //newOne = mapToStruct(test7); myendVal = ""; myFutureTask = variables.memcached.asyncGet("queryTest"); if (myFutureTask.isDone()) { myendVal = myFutureTask.get(); } else { customSleep(2000); if (myFutureTask.isDone()) { myEndVal = myFutureTask.get(); } } myendVal = ""; myFutureTask = variables.memcached.asyncGetBulk(arrTestVals); if (myFutureTask.isDone()) { myendVal = myFutureTask.get(); } else { customSleep(2000); if (myFutureTask.isDone()) { myEndVal = myFutureTask.get(); } }
function GetClassHeirarchy(obj){ var thisClass = obj.GetClass(); var sReturn = thisClass.GetName(); do{ thisClass = thisClass.GetSuperClass(); sReturn = sReturn & " EXTENDS: #thisClass.GetName()#"; } while(CompareNoCase(thisClass.GetName(), 'java.lang.Object')); return sReturn; } function mapToStruct(obj) { var ret = structNew(); if (not obj.isEmpty()) { do { key = obj.entrySet().iterator().next(); thisval = obj.get(key); if (isdefined("thisval")) { ret[key.toString()] = thisval; } else { ret[key.toString()] = ""; } } while ( obj.entrySet().iterator().hasNext() ); } }