Created
March 19, 2021 12:36
My Docker For Mac File IO Is 68-Times Slower Than It Is In Production
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfswitch expression="#thistag.executionMode#"> | |
<cfcase value="start"> | |
. | |
</cfcase> | |
<cfcase value="end"> | |
</cfcase> | |
</cfswitch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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