Pardon my noob-ish request. As far as I understand, I cannot currently do simple key / value store functionality like due to the inherent complexity of the datastore key objects:
var key = "hello"; // string or number
var value = "world"; // string or number
datastore.set(key, value, function(err) {
if(!err) {
// success;
}
});
datastore.get("hello", function(err, val) {
val; // "world"
});
Pardon my noob-ish request. As far as I understand, I cannot currently do simple key / value store functionality like due to the inherent complexity of the datastore key objects: