cache = \Ubiquity\orm\DAO::getCache(); } public function initialize() { \Ubiquity\utils\http\UResponse::setContentType('application/json'); } public function index() {} public function cachedquery($queries = 1) { $worlds = []; $count = \min(\max((int) $queries, 1), 500); while ($count --) { $worlds[] = ($this->cache->fetch('models\\CachedWorld', \mt_rand(1, 10000)))->_rest; } echo \json_encode($worlds); } }