Skip to main content
wwprabowo
Participant
November 7, 2009
Question

Parallel Process in Coldfusion

  • November 7, 2009
  • 3 replies
  • 853 views

Hi All, I came across with problem of the time we spent to process 10.000 employees, that took so long, more than 2 hours.

I made an Coldfusion application to process Payroll data and calculate the taxes.

the Idea to improve the performance is by making the process runs parallel.but I don't know how to do it. any advice that might help me ?

Thanks,

Wisnu

    This topic has been closed for replies.

    3 replies

    November 9, 2009

    Solution is  ColdFusion event gateway.

    U can set the the process as gateway instance and this will process parellel to ur appliction

    Inspiring
    November 7, 2009

    Another possible solution is the run it as a scheduled job.

    BKBK
    Community Expert
    Community Expert
    November 7, 2009
    Another possible solution is the run it as a scheduled job.

    And yet another, is to run it as a separate thread, using cfthread

    BKBK
    Community Expert
    Community Expert
    November 7, 2009

    One possible solution is to run that application in Coldfusion's asynchronous gateway. Coldfusion will then start the application as a batch process and, while it is running in the background, Coldfusion will proceed to do other things.