I want to cache the thumbs because the images I am resizing are around 1-3 MBs each and it takes forever to load a page of thumbnails so I want to cache the thumbnails. Is this possible or do I need to take a new approach? Thanks!
Below is my current code:
<cfimage action="read" source="#dir.DIRECTORY#\#dir.name#" name="ImageObject" />
<cfimage action="resize" source="#ImageObject#" width="115" height="89" name="ImageObject" />
<cfimage action="writetobrowser" source="#ImageObject#" style="margin-right:4px;" />