使用Caliper时如何指定命令行?
我发现 Google 的微型基准测试项目 Caliper 非常有趣,但文档仍然(除了一些示例)完全不存在。
我有两种不同的情况,我需要影响 JVM Caliper 启动的命令行:
- 我需要设置一些固定的(理想情况下在几个固定值之间交替) -D 参数
- 我需要指定一些固定的(理想情况下在几个固定值之间交替) 我看到了一些关于添加这样的
功能的讨论,但我无法断定它是否已添加,在这种情况下语法会变成什么?
一些示例或指向 Java 文档的指针(假设这在某处有记录)等将非常感激!
I find Google's micro benchmark project Caliper very interesting but the documentation is still (except some examples) quite non-existent.
I have two different cases where I need to influence the command line of the JVMs Caliper starts:
- I need to set some fixed (ideally alternated between a few fixed values) -D parameters
- I need to specify some fixed (ideally alternated between a few fixed values) JVM parameters
I saw some discussion about adding features like this but I could not conclude if it has been added or not and in that case what the syntax became?
Some example or pointers into Java doc (assuming this is at all documented somewhere) etc would be very much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用命令行参数修复基准参数,请使用
-Dname=value
。有一个特殊参数,名为benchmark
;它的值是您的time
方法的后缀。如果您想将参数限制为多个值,请用逗号分隔它们,如下所示:-Dname=value1,value2
。要设置 JVM 参数,请使用
-Jname=flag1,flag2
。例如,考虑此基准测试:
要以长度 5 和 6 以及大堆和小堆运行此基准测试,请使用这些参数:
这将产生以下结果:
To fix a benchmark parameter with a command line argument, use
-Dname=value
. There is one special parameter namedbenchmark
; it's values are the suffixes to yourtime
methods. If you'd like to limit a parameter to multiple values, separate them by commas like this:-Dname=value1,value2
.To set JVM parameters, use
-Jname=flag1,flag2
.For example consider this benchmark:
To run this benchmark with lengths 5 and 6, and large and small heaps, use these parameters:
This yields the following: