Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #16899
| Path | csiph.com!usenet.pasdenom.info!aioe.org!.POSTED!not-for-mail |
|---|---|
| From | qwertmonkey@syberianoutpost.ru |
| Newsgroups | comp.lang.java.programmer |
| Subject | How can you make idle processors pick up java work? |
| Date | Wed, 1 Aug 2012 02:46:50 +0000 (UTC) |
| Organization | Aioe.org NNTP Server |
| Lines | 23 |
| Message-ID | <jva5aq$k8b$1@speranza.aioe.org> (permalink) |
| NNTP-Posting-Host | z9Rq+Ge+SLJPEkk9TGcnaw.user.speranza.aioe.org |
| X-Complaints-To | abuse@aioe.org |
| X-Notice | Filtered by postfilter v. 0.8.2 |
| X-Newsreader | NetComponents |
| Xref | csiph.com comp.lang.java.programmer:16899 |
Show key headers only | View raw
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