Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #16899
| From | qwertmonkey@syberianoutpost.ru |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | How can you make idle processors pick up java work? |
| Date | 2012-08-01 02:46 +0000 |
| Organization | Aioe.org NNTP Server |
| Message-ID | <jva5aq$k8b$1@speranza.aioe.org> (permalink) |
just in case someone ponders over the same. At the end of the day there is
no speed improvement whatsoever compared to doing the char reading into a
buffer and parsing out the sentences yourself
~
the code below does the same thing
~
BfR = Files.newBufferedReader(IFlPth, Charset.forName("UTF-8"));
// __
aSx = BfR.readLine();
while(aSx != null){
iSL = aSx.length();
for(int k = 0; (k < iSL); ++k){
iKdPnt = aSx.codePointAt(k);
++lTtlKdPnts;
}
++lLns;
iTtlRdByts += iSL;
aSx = BfR.readLine();
}// (iRdByts > -1)
// __
BfR.close();
~
lbrtchx
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
How can you make idle processors pick up java work? qwertmonkey@syberianoutpost.ru - 2012-08-01 02:46 +0000 Re: How can you make idle processors pick up java work? Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2012-08-01 10:02 -0700
csiph-web