We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Save huge model async

Hi,

I'm used to use c# so i had a idea.

I have to save a huge Model. But this is not relevant for the user. Is ist possible to save it async on the server while the user can leave the page? The model saving itself does not need the time, its the import for the data for the model...

Thanks for help!

use gearman to offload the expensive process from main process.

Okey thanks !!