I am wondering if there was a way that we can load the view and then in the background do some other database inserts.
For example:
$this->load->view(‘vquick’);
$this->MTag->insertRecords();—> I would like this insert to happen in a separate thread so that user does not have to wait for the insert to complete.
Kumar