## 项目目的
源于在做 React Native 包拆分的需求时,比较 bsdiff 和 google-diff-match-patch 在生成差量文件上的性能差异。
- bsdiff (http://www.daemonology.net/bsdiff/)
- google-diff-match-patch (https://github.com/bystep15/google-diff-match-patch)
- metro-bundle(https://facebook.github.io/metro/)
## 实验数据
- Hello World 工程中的 jsbundle 对比
| 工具名称 | bsdiff | google-diff-match-patch | metro-bundle |
| --------------------------- | ------------- | ----------------------- | ------------- |
| Common 包 | 764,797 bytes | 764,797 bytes | 764,797 bytes |
| HelloWorld 完整包 | 767,338 bytes | 767,338 bytes | 767,338 bytes |
| HelloWorld 业务补丁 (patch) | 1,324 bytes | 42,891 bytes | 2,783 bytes |
| 拆分时间 (diff time) | 1,042 ms | 2,410 ms | - |
| 合并时间 (patch time) | 32 ms | 258 ms | - |
bsdiff| google-diff-match-patch | metro-bundle 文件差异分析工具性能比对
瓦哥架构实战2024-01-17 10:01
相关推荐
东阳马生架构3 分钟前
订单初版—2.生单链路中的技术问题说明文档咖啡啡不加糖18 分钟前
暴力破解漏洞与命令执行漏洞风象南21 分钟前
SpringBoot敏感配置项加密与解密实战DKPT31 分钟前
Java享元模式实现方式与应用场景分析Percep_gan39 分钟前
idea的使用小技巧,个人向缘来是庄39 分钟前
设计模式之迭代器模式Liudef061 小时前
基于HTML与Java的简易在线会议系统实现JosieBook1 小时前
【Java编程动手学】Java常用工具类oioihoii1 小时前
C++11标准库算法:深入理解std::none_of老虎06271 小时前
数据结构(Java)--位运算