Skip to content

Instantly share code, notes, and snippets.

@icerge
Last active July 24, 2023 11:11
Show Gist options
  • Save icerge/c6e812bf3561068fc28efd912feeb83d to your computer and use it in GitHub Desktop.
Save icerge/c6e812bf3561068fc28efd912feeb83d to your computer and use it in GitHub Desktop.
Timer in SN - GlideStopWatch

Watch out performance of your queries!

var sw = new GlideStopWatch();  
var recGR = new GlideRecord('cmdb_ci');  
recGR.addQuery('sys_class_name', 'INSTANCEOF', 'cmdb_ci_server');  
recGR.addQuery('name', 'ABCDEF');  
recGR.setLimit(1);  
recGR.query();  
if (recGR.hasNext()) {  
  // exists  
} else {  
  // doesn't exist  
}  
gs.print('GlideRecord took ' + sw);  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment