BigInteger20.java
package com.alibaba.fastjson2.benchmark.primitves;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONB;
import com.alibaba.fastjson2.JSONWriter;
import com.alibaba.fastjson2.benchmark.primitves.vo.BigInteger20Field;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.gson.Gson;
import org.apache.commons.io.IOUtils;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.infra.Blackhole;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
import org.openjdk.jmh.runner.options.Options;
import org.openjdk.jmh.runner.options.OptionsBuilder;
import java.io.InputStream;
import java.util.concurrent.TimeUnit;
public class BigInteger20 {
static BigInteger20Field bean;
static ObjectMapper mapper = new ObjectMapper();
static Gson gson = new Gson();
public BigInteger20() {
try {
InputStream is = BigInteger20.class.getClassLoader().getResourceAsStream("data/bigint20.json");
String str = IOUtils.toString(is, "UTF-8");
bean = JSON.parseObject(str, BigInteger20Field.class);
// furyCompatibleBytes = furyCompatible.serialize(bean);
} catch (Exception ex) {
ex.printStackTrace();
}
}
@Benchmark
public void fastjson1(Blackhole bh) {
bh.consume(
com.alibaba.fastjson.JSON.toJSONString(bean)
);
}
@Benchmark
public void fastjson2(Blackhole bh) {
bh.consume(
JSON.toJSONString(bean)
);
}
public void fastjson2_array_bytes(Blackhole bh) {
bh.consume(
JSON.toJSONBytes(bean, JSONWriter.Feature.BeanToArray)
);
}
@Benchmark
public void jsonb(Blackhole bh) {
bh.consume(
JSONB.toBytes(bean)
);
}
@Benchmark
public void jackson(Blackhole bh) throws Exception {
bh.consume(
mapper.writeValueAsString(bean)
);
}
@Benchmark
public void gson(Blackhole bh) throws Exception {
bh.consume(
gson.toJson(bean)
);
}
@Benchmark
public void wastjson(Blackhole bh) throws Exception {
bh.consume(
io.github.wycst.wast.json.JSON.toJsonString(bean)
);
}
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder()
.include(BigInteger20.class.getName())
.exclude(BigDecimal20Tree.class.getName())
.mode(Mode.Throughput)
.timeUnit(TimeUnit.MILLISECONDS)
.warmupIterations(3)
.forks(1)
.build();
new Runner(options).run();
}
}