if (!$row = $this->Memcached->fetch($this->mckey)) {
                $query = "SELECT location.*, u.username, count(locations_like.location_id) AS likes FROM location LEFT JOIN locations_like ON location.id = locations_like.location_id LEFT JOIN nuke_users AS u ON u.user_id = location.user_id WHERE location.id = ?";
                
                $row = $this->db->fetchRow($query, $this->id);
            }