- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在竞争编程的过程中,对数过滤器(使用多种编程语言/技术)中,我发现从stdin
读取Java的性能相当差。
首先,与其他技术相比,我将问题归结为从stdin
读取行的性能(尚无文本处理或正则表达式)。
受Fastest way for line-by-line reading STDIN?答案的启发,我编写了自己的线路阅读器,但速度慢了1.3倍。
被测代码实施
码
LineReader.java
package org.acme.logfilter;
import java.io.IOException;
import java.io.InputStreamReader;
public class LineReader {
private static final int DEFAULT_READ_BUFFER_SIZE = 32768;
private static final int INITIAL_LINE_BUFFER_SIZE = 128;
private InputStreamReader isr;
private int lineBufferSize;
// To buffer the read from the input stream
private char[] readBuffer;
// The extracted line
private char[] lineBuffer;
// Bytes read from the input stream
private int readBufferCapacity = 0;
// Position in the read buffer
private int readIdx = 0;
// The line length remembered with the last readLine()
private int lineLength = 0;
public LineReader(InputStreamReader isr) {
this(isr, DEFAULT_READ_BUFFER_SIZE);
}
public LineReader(InputStreamReader isr, int readBufferSize) {
this.isr = isr;
this.lineBufferSize = INITIAL_LINE_BUFFER_SIZE;
this.readBuffer = new char[readBufferSize];
this.lineBuffer = new char[lineBufferSize];
}
public boolean readLine() throws IOException {
// Copy reference & value for slightly improved performance
char[] readBuffer = this.readBuffer;
// A local reference improves performance slightly
int readIdx = this.readIdx;
// Index of the (target) line array (equals to the line length)
int lineIdx = 0;
while (true) {
if (readIdx == readBufferCapacity) {
// Read buffer not filled yet or exceeded
// (The line buffer might not be complete yet)
// Reset the read buffer index (it has exceeded)
readIdx = 0;
// (Re)fill the buffer ...
readBufferCapacity = isr.read(readBuffer, 0, readBuffer.length);
if (readBufferCapacity <= 0) {
// Though the stream ended, we previously read a line
// without CR
return lineIdx > 0 ? true : false;
}
}
if (lineIdx == lineBufferSize) {
// Line buffer is full, create new buffer and "backup" line
// Remember current buffer before creating new one
char[] oldLineBuffer = lineBuffer;
// Extend by initial size
lineBufferSize += INITIAL_LINE_BUFFER_SIZE;
lineBuffer = new char[lineBufferSize];
// Copy incomplete line to the bigger buffer ...
System.arraycopy(oldLineBuffer, 0, lineBuffer, 0, lineIdx);
}
char chr = readBuffer[readIdx];
readIdx++;
if (chr == '\n') {
this.lineLength = lineIdx;
// "Export" localized variables
this.readIdx = readIdx;
return true;
}
lineBuffer[lineIdx] = chr;
lineIdx++;
}
}
public char[] getLine() {
return lineBuffer;
}
public int getLineLength() {
return lineLength;
}
}
char[]
缓冲区是有意的。这个想法是要节省任何
StringBuffer
或重复的
char[]
分配开销和复制。由于使用程序仅用于读取而不是操作字符串,因此我认为将
char[]
包裹为
CharSequence
以便将char序列输入到其他方法是个好主意。
BufferedReader
的性能较差的过程。
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr, 32768 * 1024);
String line;
long lines = 0;
while ((line = br.readLine()) != null) {
lines++;
}
InputStreamReader isr = new InputStreamReader(System.in);
LineReader reader = new LineReader(isr, 32768 * 1024);
long lines = 0;
while (reader.readLine()) {
lines++;
}
time()
结果
$ time ( cat /ramdisk/1gb.txt | java -cp bin/ org.acme.logfilter.FilterLogStdBufferedReader )
real 8.10
user 6.08
sys 3.73
$ time ( cat /ramdisk/1gb.txt | java -cp bin/ org.acme.logfilter.FilterLogCustomLineparserExt )
real 9.49
user 7.92
sys 3.22
-Xprof
概述了JVM如何解释和运行代码(解释代码或执行JIT编译或本机代码花了多少时间)。
Flat profile of 9.80 secs (768 total ticks): main
Interpreted + native Method
0.7% 5 + 0 org.acme.logfilter.FilterLogStdBufferedReader.main
0.4% 0 + 3 java.io.FileInputStream.available
0.4% 3 + 0 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
0.3% 2 + 0 java.io.BufferedReader.readLine
...
2.2% 13 + 4 Total interpreted
Compiled + native Method
45.3% 347 + 1 org.acme.logfilter.FilterLogStdBufferedReader.main
0.8% 6 + 0 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
0.5% 0 + 4 java.io.BufferedReader.readLine
0.4% 0 + 3 java.io.BufferedReader.readLine
...
47.3% 354 + 9 Total compiled
Stub + native Method
33.7% 0 + 259 java.io.FileInputStream.available
16.7% 0 + 128 java.io.FileInputStream.readBytes
0.1% 0 + 1 java.lang.System.arraycopy
50.5% 0 + 388 Total stub
Global summary of 9.80 seconds:
100.0% 777 Received ticks
1.2% 9 Received GC ticks
4.4% 34 Compilation
Flat profile of 13.88 secs (1017 total ticks): main
Interpreted + native Method
0.3% 3 + 0 org.acme.logfilter.FilterLogCustomLineparserExt.main
0.2% 0 + 2 java.io.FileInputStream.available
0.2% 2 + 0 org.acme.logfilter.LineReader.readLine
0.2% 2 + 0 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
...
1.2% 10 + 2 Total interpreted
Compiled + native Method
57.7% 587 + 0 org.acme.logfilter.FilterLogCustomLineparserExt.main
1.7% 17 + 0 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
0.2% 1 + 1 org.acme.logfilter.LineReader.readLine
...
59.8% 606 + 2 Total compiled
Stub + native Method
24.0% 0 + 244 java.io.FileInputStream.available
14.8% 0 + 151 java.io.FileInputStream.readBytes
0.2% 0 + 2 java.lang.System.arraycopy
39.0% 0 + 397 Total stub
Global summary of 13.88 seconds:
100.0% 1018 Received ticks
2.7% 27 Compilation
FilterLogStdBufferedReader
编译代码,
FilterLogCustomLineparserExt
中的本机代码相比,JVM在执行编译后的代码上花费的时间更多,
sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
调用
FilterLogCustomLineparserExt
的频率更高,或者被发现的激活时间更长,
LineReader
不能进行优化以使JVM及时编译更多代码(解释更少),并且
LineReader
应该进行优化以执行“更少不必要的”工作,以使(编译后的)代码不会“浪费”太多时间
cpu=times
计算对方法的调用,并计算调用对CPU时间的贡献。
$ cat /ramdisk/1gb.txt | java -agentlib:hprof=cpu=times,file=stdbufferedreader.hprof.txt -cp bin/ org.acme.logfilter.FilterLogStdBufferedReader
CPU TIME (ms) BEGIN (total = 321694) Sat Aug 26 09:42:52 2017
rank self accum count trace method
1 28.49% 28.49% 13107201 301905 java.io.BufferedReader.readLine
2 17.69% 46.17% 13107201 301906 java.io.BufferedReader.readLine
3 17.59% 63.77% 13107154 301904 java.lang.String.<init>
4 10.07% 73.84% 1 302038 org.acme.logfilter.FilterLogStdBufferedReader.main
5 7.86% 81.70% 13107154 301903 java.util.Arrays.copyOfRange
6 7.31% 89.01% 13107201 301826 java.io.BufferedReader.ensureOpen
7 1.86% 90.87% 128061 301866 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
8 1.00% 91.87% 128001 301894 sun.nio.cs.StreamDecoder.readBytes
9 0.97% 92.84% 128001 301880 java.nio.HeapByteBuffer.compact
10 0.67% 93.51% 61 301898 sun.nio.cs.StreamDecoder.implRead
11 0.66% 94.17% 128001 301888 java.io.FileInputStream.read
12 0.48% 94.65% 128061 301849 sun.nio.cs.UTF_8.updatePositions
13 0.41% 95.07% 128001 301889 java.io.BufferedInputStream.read1
...
$ cat /ramdisk/1gb.txt | java -agentlib:hprof=cpu=times,file=custom.hprof.txt -cp bin/ org.acme.logfilter.FilterLogCustomLineparserExt
CPU TIME (ms) BEGIN (total = 103141) Sat Aug 26 09:39:02 2017
rank self accum count trace method
1 34.11% 34.11% 13107201 301921 org.acme.logfilter.LineReader.readLine
2 31.22% 65.32% 1 302011 org.acme.logfilter.FilterLogCustomLineparserExt.main
3 5.75% 71.07% 128040 301886 sun.nio.cs.UTF_8$Decoder.decodeArrayLoop
4 3.10% 74.17% 128001 301914 sun.nio.cs.StreamDecoder.readBytes
5 3.01% 77.18% 128001 301900 java.nio.HeapByteBuffer.compact
6 2.65% 79.83% 128001 301908 java.io.FileInputStream.read
7 2.10% 81.93% 40 301918 sun.nio.cs.StreamDecoder.implRead
8 1.46% 83.38% 128040 301869 sun.nio.cs.UTF_8.updatePositions
9 1.24% 84.63% 128040 301890 java.nio.charset.CharsetDecoder.decode
10 1.20% 85.83% 128001 301909 java.io.BufferedInputStream.read1
11 1.17% 86.99% 128040 301887 sun.nio.cs.UTF_8$Decoder.decodeLoop
12 0.91% 87.90% 127971 301916 java.io.BufferedInputStream.available
13 0.85% 88.76% 128001 301910 java.io.BufferedInputStream.read
14 0.61% 89.36% 127971 301917 sun.nio.cs.StreamDecoder.inReady
15 0.53% 89.90% 128040 301885 sun.nio.cs.UTF_8$Decoder.xflow
16 0.52% 90.42% 128040 301870 sun.nio.cs.UTF_8.access$200
17 0.48% 90.90% 256080 301867 java.nio.Buffer.position
18 0.46% 91.36% 256080 301860 java.nio.ByteBuffer.arrayOffset
19 0.44% 91.80% 256080 301861 java.nio.Buffer.position
20 0.44% 92.24% 256002 301894 java.nio.HeapByteBuffer.ix
21 0.43% 92.68% 256080 301862 java.nio.Buffer.limit
22 0.43% 93.11% 256002 301895 java.nio.Buffer.remaining
23 0.42% 93.53% 256080 301864 java.nio.CharBuffer.arrayOffset
...
readLine()
中花费更多时间。
total = 103141
)。
user
时间匹配。我认为这是由于
BufferedReader
实现运行的时间更长,这是因为代码更多,因此仪器也更多。这与不进行概要分析的反向运行时间并不矛盾。
lineIdx
和
readIdx
设置为本地有助于将性能提高到当前(仍然很差)状态
CharSequence
返回的
readLine()
代替多个吸气剂(性能显着降低)
LineReader
一次又一次创建
BufferedReader
和
StringBuffers
实例并不断复制数据的
char[]
相比,
最佳答案
您的LineReader
实现存在许多问题,使其无法达到最佳效果。
首先,readLine
是一种大型方法,具有复杂的控制流,这使JVM难以应用优化。lineBuffer
逐字符填充,而使用批量复制速度更快。
访问readBuffer
和lineBuffer
数组时,对索引变量没有明显的限制,因此JVM将对每个数组操作发出数组边界检查。
我的建议是:
使用简短的单独循环查找\n
字符的索引。它将受益于许多JIT优化,例如循环展开,数组边界检查消除,更好的寄存器分配等。
找到\n
后,立即使用System.arraycopy
填充lineBuffer
。
这是一个示例,功能不完全,但是可以使您了解它的外观。
public boolean readLine() throws IOException {
do {
int cr = findCR(readBuffer, readIdx, readBufferCapacity);
if (cr >= 0) {
lineLength = cr - readIdx - 1;
System.arraycopy(readBuffer, readIdx, lineBuffer, 0, lineLength);
readIdx = cr;
return true;
}
} while (refill());
return false;
}
private int findCR(char[] readBuffer, int pos, int limit) {
// Ensuring that limit <= readBuffer.length helps JIT to eliminate array bounds check
limit = Math.min(limit, readBuffer.length);
while (pos < limit) {
if (readBuffer[pos++] == '\n') {
return pos;
}
}
return -1;
}
关于java - 了解通过InputStreamReader将stdin中的行读入char []时的性能不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45902998/
在这段令人惊叹的视频 ( https://www.youtube.com/watch?v=udix3GZouik ) 中,Alex Blom 谈到了 Ember 在移动世界中的“黑客攻击”。 在 22
我们希望通过我们的应用收集使用情况统计信息。因此,我们希望在服务器端的某个地方跟踪用户操作。 就性能而言,哪个选项更合适: 在 App Engine 请求日志中跟踪用户操作。即为每个用户操作写入一个日
在针对对象集合的 LINQ 查询的幕后究竟发生了什么?它只是语法糖还是发生了其他事情使其更有效的查询? 最佳答案 您是指查询表达式,还是查询在幕后的作用? 查询表达式首先扩展为“普通”C#。例如: v
我正在构建一个简单的照片库应用程序,它在列表框中显示图像。 xaml 是:
对于基于 Web 的企业应用程序,使用“静态 Hashmap 存储对象” 和 apache java 缓存系统有何优缺点?哪一个最有利于性能并减少堆内存问题 例如: Map store=Applica
我想知道在性能方面存储类变量的最佳方式是什么。我的意思是,由于 Children() 函数,存储一个 div id 比查找所有其他类名更好。还是把类名写在变量里比较好? 例如这样: var $inne
我已经阅读了所有这些关于 cassandra 有多快的文章,例如单行读取可能需要大约 5 毫秒。 到目前为止,我不太关心我的网站速度,但是随着网站变得越来越大,一些页面开始需要相当多的查询,例如一个页
最近,我在缓存到内存缓存之前的查询一直需要很长时间才能处理!在这个例子中,它花费了 10 秒。在这种情况下,我要做的就是获得 10 个最近的点击。 我感觉它加载了所有 125,592 行然后只返回 1
我找了几篇文章(包括SA中的一些问题),试图找到基本操作的成本。 但是,我尝试制作自己的小程序,以便自己进行测试。在尝试测试加法和减法时,我遇到了一些问题,我用简单的代码向您展示了这一点
这个问题在这里已经有了答案: Will Java app slow down by presence of -Xdebug or only when stepping through code? (
我记得很久以前读过 with() 对 JavaScript 有一些严重的性能影响,因为它可能对范围堆栈进行非确定性更改。我很难找到最近对此的讨论。这仍然是真的吗? 最佳答案 与其说 with 对性能有
我们有一个数据仓库,其中包含非规范化表,行数从 50 万行到 6 多万行不等。我正在开发一个报告解决方案,因此出于性能原因我们正在使用数据库分页。我们的报告有搜索条件,并且我们已经创建了必要的索引,但
我有一条有效的 SQL 语句,但需要很长时间才能处理 我有一个 a_log 表和一个 people 表。我需要在 people 表中找到给定人员的每个 ID 的最后一个事件和关联的用户。 SELECT
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
通常当我建立一个站点时,我将所有的 CSS 放在一个文件中,并且一次性定义与一组元素相关的所有属性。像这样: #myElement { color: #fff; background-
两者之间是否存在任何性能差异: p { margin:0px; padding:0px; } 并省略最后的分号: p { margin:0px; padding:0px } 提前致谢!
我的应用程序 (PHP) 需要执行大量高精度数学运算(甚至可能出现一共100个数字) 通过这个论坛的最后几篇帖子,我发现我必须使用任何高精度库,如 BC Math 或 GMP,因为 float 类型不
我一直在使用 javamail 从 IMAP 服务器(目前是 GMail)检索邮件。 Javamail 非常快速地从服务器检索特定文件夹中的消息列表(仅 id),但是当我实际获取消息(仅包含甚至不包含
我非常渴望开发我的第一个 Ruby 应用程序,因为我的公司终于在内部批准了它的使用。 在我读到的关于 Ruby v1.8 之前的所有内容中,从来没有任何关于性能的正面评价,但我没有发现关于 1.9 版
我是 Redis 的新手,我有一个包含数百万个成员(member) ID、电子邮件和用户名的数据集,并且正在考虑将它们存储在例如列表结构中。我认为 list 和 sorted set 可能最适合我的情
我是一名优秀的程序员,十分优秀!