Skip to content

Instantly share code, notes, and snippets.

@bennadel
Created March 19, 2021 12:36
My Docker For Mac File IO Is 68-Times Slower Than It Is In Production
<cfswitch expression="#thistag.executionMode#">
<cfcase value="start">
.
</cfcase>
<cfcase value="end">
</cfcase>
</cfswitch>
<cfimport prefix="tags" taglib="./" />
<cfparam name="url.count" type="numeric" default="100" />
<cftimer type="outline" label="CFModule">
<cfoutput>
<cfloop index="i" from="1" to="#url.count#" step="1">
<cfmodule template="./MyTag.cfm"></cfmodule>
</cfloop>
</cfoutput>
</cftimer>
<cftimer type="outline" label="CFImport">
<cfoutput>
<cfloop index="i" from="1" to="#url.count#" step="1">
<tags:MyTag></tags:MyTag>
</cfloop>
</cfoutput>
</cftimer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment