From f580ea63987179aad221bbe52639f0010f74f8d3 Mon Sep 17 00:00:00 2001 From: dennis zhuang Date: Wed, 26 Nov 2025 09:40:38 -0800 Subject: [PATCH] add blog post about rust peroformance lessions The article shares practical performance lessons from Apache DataFusion, covering efficient HashMap use, code specialization, memory and compile-time optimizations, and balancing speed with maintainability. --- draft/2025-11-26-this-week-in-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft/2025-11-26-this-week-in-rust.md b/draft/2025-11-26-this-week-in-rust.md index dd6a0ac29..5321a0b2d 100644 --- a/draft/2025-11-26-this-week-in-rust.md +++ b/draft/2025-11-26-this-week-in-rust.md @@ -56,7 +56,7 @@ and just ask the editors to select the category. ### Rust Walkthroughs - [Rust Unit Testing: File reading](https://jorgeortiz.dev/posts/rust_unit_testing_file_reading/) - +* [Practical Performance Lessons from Apache DataFusion](https://greptime.com/blogs/2025-11-25-datafusion) * [Describing binary data with Deku](https://codeconstruct.com.au/docs/deku-elf-parser/) ### Research