with a little work, you can cache it (or something else) yourself using the wrapper method.
, https://parse.com/docs/js/symbols/Parse.Query.html :
var cacheKeys = [],
cacheVals = [];
function q(cls, ok, fail) {
var slot = cacheKeys.indexOf(cls);
if (slot !== -1) {
return ok(cacheVals[slot]);
} else {
slot=cacheKeys.length;
cacheKeys.push(cls);
}
var query = new Parse.Query(cls);
query.find({
success: function(results) {
cacheVals[slot] = results;
ok(results);
},
error: fail || console.error.bind(console)
});
}
, , WeakMap ( ), . , , q() . JSON.stringify(cls) , . , , - JSON ...