Henry
Henry

Reputation: 32915

Bypass cfthread & event gateway limit in CF standard edition with Java 7 thread pool?

On paper it seems that together with CF10's dynamic proxy and optionally with Java 7 Thread Pools, it is now possible to define Runnable in CFC and a thread pool respectively purely in CF. If this works, wouldn't this essentially bypass the cfthread / event gateway limitations in CF Standard?

Upvotes: 2

Views: 298

Answers (1)

Adam Cameron
Adam Cameron

Reputation: 29870

The limitation is on <cfthread>, not on "usage of threads in general":

On Standard Edition, the maximum limit of threads that can be spawned via CFTHREAD is 10

(From "Adobe ColdFusion 11 family / Buying guide : Product comparison")

You're using a different mechanism to do your threading, so it would be absolutely fine.

Upvotes: 1

Related Questions