cfdocument works well for low-volume PDF generation, but at scale it becomes a bottleneck because PDF rendering is CPU-intensive and runs synchronously on a request thread. The three highest-leverage fixes are: (1) move generation off the request thread with a queue using cfthread or runAsync(), (2) cache finished PDFs so identical documents are never re-rendered, and (3) offload storage and delivery to Amazon S3 using ColdFusion's native s3:// file support. Together, these keep your web tier responsive under heavy PDF load.
Read More
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)