I read in one of the livedocs that cfmodule is to be avoided.
Under Performance donts the article reads
Don't use cfmodule
It's slower than a CFC method invocation, it's slower and uglier than using a custom tag with a prefix, it's even slightly slower than a regular custom tag invocation. Better options exist: use a CFC (preferred), use cfimport and invoke a custom tag using a prefix (always preferable to invoking a custom tag via cfmodule), or even simply include a file.
Is this advice to be followed. I have extensively used cfmodule and am not too keen on having to reqrite them in a different form. Is there a performance issue here ?
Under Performance donts the article reads
Don't use cfmodule
It's slower than a CFC method invocation, it's slower and uglier than using a custom tag with a prefix, it's even slightly slower than a regular custom tag invocation. Better options exist: use a CFC (preferred), use cfimport and invoke a custom tag using a prefix (always preferable to invoking a custom tag via cfmodule), or even simply include a file.
Is this advice to be followed. I have extensively used cfmodule and am not too keen on having to reqrite them in a different form. Is there a performance issue here ?