Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

23
LINES

< > BotCompany Repo | #1011727 // Benchmark String.intern() vs internPerProgram vs fastIntern (VM-wide intern) vs intern (synonym of fastIntern)

JavaX source code (desktop) [tags: use-pretranspiled] - run with: x30.jar

Download Jar. Libraryless. Click here for Pure Java version (2222L/15K).

!7

p {
  L<S> l = repF(f aGlobalID, 1000);
  
  int n = 1000;
  repeat 10 {
    time "String.intern" {
      repeat n { for (S s : l) s.intern(); }
    }
    time "internPerProgram" {
      repeat n { for (S s : l) internPerProgram(s); }
    }
    time "fastIntern" {
      repeat n { for (S s : l) fastIntern(s); }
    }
    time "intern(S)" {
      repeat n { for (S s : l) intern(s); }
    }
  }
  
  //printBenchResult(n);
}

Author comment

Began life as a copy of #1011712

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1011727
Snippet name: Benchmark String.intern() vs internPerProgram vs fastIntern (VM-wide intern) vs intern (synonym of fastIntern)
Eternal ID of this version: #1011727/10
Text MD5: 68ba6110bbb262a32e74e74d916619c4
Transpilation MD5: 98264482dc546de2e6eeb367e5c7d0fc
Author: stefan
Category: javax
Type: JavaX source code (desktop)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-11-03 17:32:42
Source code size: 451 bytes / 23 lines
Pitched / IR pitched: No / No
Views / Downloads: 293 / 803
Version history: 9 change(s)
Referenced in: [show references]