> Apparently CF Standard only supports two concurrent threads while the > rest is queued, not sure how useful that will be then. > > How does it work in detail, say I have 10 people uploading a document > at the same time wouldn't the page thread be essentially multithreaded > anyway (one for each user)? If so maybe I could just use cfflush and > then add the conversion code afterwards. Would that essentially be the > same as starting a cfthread from that page?
No, CFFLUSH will simply keep the request open for additional information after sending the contents of the buffer. And CFTHREAD won't be helpful to you on CF Standard - the concurrency limitation is intended to coax you into buying Enterprise if you want those features. Instead, I suggest you use the "poor man's" asynchronous processing - CFSCHEDULE. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/flex/message.cfm/messageid:5772 Subscription: http://www.houseoffusion.com/groups/flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
