What is the quickest way to store a key and it's value? Something like:
put($k, $v);
if (get($k) == $v) {
echo 'True';
}
It is the 'put' and 'get' function I am interested in writting, and they
need to be persistent.
I'm going to look at using DataTree and History.
Does anyone know of a cleaner/better way?
Anthony