Skip to content

Instantly share code, notes, and snippets.

@jcberquist
Created April 23, 2020 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcberquist/4d758ce067bde64b17ec552e0d8cd7fd to your computer and use it in GitHub Desktop.
Save jcberquist/4d758ce067bde64b17ec552e0d8cd7fd to your computer and use it in GitHub Desktop.
LDEV-2808
<cfscript>
ppct = new pagePoolClearTest();
ppct.test();
</cfscript>
component {
function test() {
for ( var i = 1; i <= 100; i++ ) {
pagePoolClear();
try {
getMetadata( this );
} catch ( any e ) {
writeDump( i );
writeDump( e );
break;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment