Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. system.debug('init ' + limits.getCpuTime());
  2. account[] testAcc = new account[]{};
  3.  
  4. for (integer i=0; i<1000; i++){
  5. testAcc.add (new account (name = 'bunny'+i, recordtypeid= '01228000000YSb5AAG'));
  6. }
  7. insert testAcc;
  8.  
  9. system.debug('fin ' + limits.getCpuTime());
  10.  
  11. trigger acc on Account (after insert) {
  12. system.debug('init ' + limits.getCpuTime());
  13. if(trigger.isInsert && trigger.isAfter){
  14. integer startTime = limits.getCpuTime();
  15. account[] accList = new account[]{};
  16. for (account a: trigger.new) {
  17.  
  18. if (a.name.startsWith('bunny')){
  19. accList.add ( new account (id = a.id, name = '1' + a.name));
  20. }
  21. }
  22. update accList;
  23. integer endTime = limits.getCpuTime();
  24. system.debug('time spent ' + (endTime - startTime));
  25. }
  26. system.debug('fin ' + limits.getCpuTime());
  27. }
  28.  
  29. 19:29:29.236 (1236253657)|USER_DEBUG|[2]|DEBUG|init 218
  30. 19:29:30.433 (2433681531)|USER_DEBUG|[14]|DEBUG|time spent 182
  31. 19:29:30.433 (2433779634)|USER_DEBUG|[16]|DEBUG|fin 400
  32. 19:29:31.383 (3383811210)|USER_DEBUG|[2]|DEBUG|init 547
  33. 19:29:32.318 (4318653559)|USER_DEBUG|[14]|DEBUG|time spent 186
  34. 19:29:32.318 (4318728992)|USER_DEBUG|[16]|DEBUG|fin 733
  35. 19:29:33.384 (5384519465)|USER_DEBUG|[2]|DEBUG|init 879
  36. 19:29:34.463 (6463341239)|USER_DEBUG|[14]|DEBUG|time spent 194
  37. 19:29:34.463 (6463415658)|USER_DEBUG|[16]|DEBUG|fin 1073
  38. 19:29:35.519 (7519942400)|USER_DEBUG|[2]|DEBUG|init 1221
  39. 19:29:36.496 (8496883237)|USER_DEBUG|[14]|DEBUG|time spent 176
  40. 19:29:36.496 (8496963064)|USER_DEBUG|[16]|DEBUG|fin 1397
  41. 19:29:37.359 (9359159436)|USER_DEBUG|[2]|DEBUG|init 1539
  42. 19:29:38.342 (10342250700)|USER_DEBUG|[14]|DEBUG|time spent 175
  43. 19:29:38.342 (10342325892)|USER_DEBUG|[16]|DEBUG|fin 1714
  44. 19:29:38.418 (10418464850)|USER_DEBUG|[10]|DEBUG|fin 1758
  45.  
  46. 19:36:08.049 (1049372513)|USER_DEBUG|[2]|DEBUG|init 272
  47. 19:36:08.983 (1983787717)|USER_DEBUG|[14]|DEBUG|time spent 220
  48. 19:36:08.983 (1983884750)|USER_DEBUG|[16]|DEBUG|fin 493
  49. 19:36:09.894 (2894742216)|USER_DEBUG|[2]|DEBUG|init 675
  50. 19:36:10.938 (3938129600)|USER_DEBUG|[14]|DEBUG|time spent 221
  51. 19:36:10.938 (3938195554)|USER_DEBUG|[16]|DEBUG|fin 896
  52. 19:36:11.806 (4806611755)|USER_DEBUG|[2]|DEBUG|init 1076
  53. 19:36:12.848 (5848225244)|USER_DEBUG|[14]|DEBUG|time spent 219
  54. 19:36:12.848 (5848291219)|USER_DEBUG|[16]|DEBUG|fin 1295
  55. 19:36:13.718 (6718297370)|USER_DEBUG|[2]|DEBUG|init 1480
  56. 19:36:14.755 (7755367410)|USER_DEBUG|[14]|DEBUG|time spent 221
  57. 19:36:14.755 (7755433819)|USER_DEBUG|[16]|DEBUG|fin 1701
  58. 19:36:15.737 (8737164443)|USER_DEBUG|[2]|DEBUG|init 1883
  59. 19:36:16.791 (9791173333)|USER_DEBUG|[14]|DEBUG|time spent 217
  60. 19:36:16.791 (9791239558)|USER_DEBUG|[16]|DEBUG|fin 2100
  61. 19:36:16.882 (9882798832)|USER_DEBUG|[10]|DEBUG|fin 2159
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement