fastjson2 icon indicating copy to clipboard operation
fastjson2 copied to clipboard

[FEATURE] 优化JSONPath setCallback场景的性能

Open wenshao opened this issue 3 years ago • 1 comments

相关Issue #210

@davionchen 提供的测试数据:

测试字符串 :{"abc":"fasd","testList":[{"abc":"dfadf"}]} 脱敏结果:{"abc":"sha256@60d203f36c2f7d24077b2cd58e03d265df10d5c410d079ee4d1da4ffef8a1230","testList":[{"abc":"sha256@29d5013b028f96981c07198bde9ebb82493fb177dbfbab4d9c82637820c9ffe3"}]} 单位:毫秒 JsonPath:13个未命中,1个命中(abc)

案例 Fastjson1ValueFilter Fastjson2JsonPath JaywayJsonPath
100w循环 2801 3145 8775
200w循环 4757 5852 16457
400w循环 8252 11484 30103

wenshao avatar May 21 '22 05:05 wenshao

参考 https://github.com/davionchen/mask-test-example.git

davionchen avatar May 28 '22 02:05 davionchen