https://github.com/wyfo/avro_poc
POC of Apache Avro Rust optimization
https://github.com/wyfo/avro_poc
Last synced: 4 months ago
JSON representation
POC of Apache Avro Rust optimization
- Host: GitHub
- URL: https://github.com/wyfo/avro_poc
- Owner: wyfo
- Created: 2023-01-04T13:54:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T14:52:34.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T16:13:28.275Z (9 months ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# avro_poc
POC of Apache Avro Rust optimization## Benchmark Results
### int
| | `apache_avro` | `avro_poc` |
|:-------|:-------------------------|:-------------------------------- |
| | `65.29 ns` (✅ **1.00x**) | `31.63 ns` (🚀 **2.06x faster**) |### array
| | `apache_avro` | `avro_poc` |
|:-------|:------------------------|:--------------------------------- |
| | `3.26 us` (✅ **1.00x**) | `821.55 ns` (🚀 **3.97x faster**) |### record
| | `apache_avro` | `avro_poc` |
|:-------|:--------------------------|:-------------------------------- |
| | `721.90 ns` (✅ **1.00x**) | `78.84 ns` (🚀 **9.16x faster**) |### recursive
| | `apache_avro` | `avro_poc` |
|:-------|:------------------------|:--------------------------------- |
| | `2.38 us` (✅ **1.00x**) | `373.80 ns` (🚀 **6.37x faster**) |### complex
| | `apache_avro` | `avro_poc` |
|:-------|:------------------------|:---------------------------------- |
| | `3.29 us` (✅ **1.00x**) | `310.16 ns` (🚀 **10.61x faster**) |---
Made with [criterion-table](https://github.com/nu11ptr/criterion-table)