"multi-threaded" CF processing

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default "multi-threaded" CF processing

    I have researched the following CF options:
    Custom Tags
    CFC's
    CFX
    UDF's

    Will any of the above technologies allow me to invoke a process while
    continuing with the calling pages code?
    I have a process to read a file, parse it and update a DB accordingly.
    The calling page is of course timing out when the file is of substantial size
    (7MB currently), but I don't need to wait for results from my process.

    From what I have read/experimented w/, my only option seems to be a CFX tag.
    Before I pack up and start down that road, I'd like to know if I have other
    options.
    Many thanks, dilligent reader!
    -ben

    ufitzi Guest

  2. Similar Questions and Discussions

    1. "error Occurred while Processing request" uponColdfusion installation
      Hello Im aboslutely new to web development, except for being able to produce not dinamic web pages. I am a beginner to Coldfusion, and I have...
    2. cfoutput cfquery "group processing" error
      I am attempting to write data to an html table from three different Access tables. I have three (3) queries in the cftransaction, each later query...
    3. "Error encountered while processing images."
      I've found several inquiries about this error, but no answers. I can't believe how user unfriendly this product has turned out to be. There's no...
    4. Form processing: change the "action=" based on pull down menu
      Hi group - I have an html form for that uses username and password to login to a specific area of the website. The "area" the user wants to go to...
    5. Script "terminates" when processing large numbers of files
      Hi, I'm running a script that reads through large numbers of html files (1500-2000 or so) in each of about 20 directories, searching for strings in...
  3. #2

    Default Re: "multi-threaded" CF processing

    if you're on mx 7, have a look at asynch gateways.

    PaulH Guest

  4. #3

    Default Re: "multi-threaded" CF processing

    This one allows multithreading on any version of CF:

    [url]http://www.cftagstore.com/tags/cfxhttp5.cfm[/url]

    Mr Black Guest

  5. #4

    Default Re: "multi-threaded" CF processing

    if you're on mx 7, have a look at asynch gateways.

    should add, that's CFMX 7 Enterprise only
    johnab Guest

  6. #5

    Default Re: "multi-threaded" CF processing

    Use the cfhttp-tag to call a template on your server which will do the long
    task.
    By setting the attribute "timeout" of cfHTTP very low while adding a high
    Requesttimeout to the cfHTTP-url, you should be able to have the cfhttp-tag
    abort very quick while the request generated by cfhttp-url is still running.

    Just an idea, think it should work and you can work with CF only.

    Stefan K. Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139