# การเพิ่มประสิทธิภาพ (Rust) > Profiling, benchmarking, กลยุทธ์ allocator, zero-copy, SIMD, inline, การเพิ่มประสิทธิภาพ codegen - 20 คำถามสัมภาษณ์ - Senior - [คำถามสัมภาษณ์: Rust](https://sharpskill.dev/th/technologies/rust/interview-questions.md) ## 1. เครื่องมือใดที่สร้าง flame graph เพื่อแสดงภาพ hotspot ด้านประสิทธิภาพในโปรแกรม Rust? **คำตอบ** cargo-flamegraph เป็นเครื่องมือมาตรฐานสำหรับสร้าง flame graph จากข้อมูล profiling โดยใช้ perf บน Linux หรือ dtrace บน macOS เพื่อเก็บตัวอย่าง stack จากนั้นสร้างการแสดงผล SVG แบบโต้ตอบที่ช่วยให้ระบุฟังก์ชันที่ใช้ CPU มากที่สุดได้อย่างรวดเร็ว ## 2. crate ใดที่แนะนำสำหรับการเขียน micro-benchmark ที่แม่นยำและเชื่อถือได้ทางสถิติใน Rust? **คำตอบ** Criterion เป็น crate มาตรฐานสำหรับการทำ benchmarking ใน Rust โดยให้การวิเคราะห์ทางสถิติที่แข็งแกร่ง ตรวจจับการถดถอยของประสิทธิภาพระหว่างการรัน สร้างกราฟ HTML และจัดการ warm-up กับจำนวนรอบการวนซ้ำโดยอัตโนมัติเพื่อให้ได้ผลลัพธ์ที่เชื่อถือได้ ## 3. แนวคิด zero-cost abstraction ใน Rust หมายความว่าอย่างไร? **คำตอบ** zero-cost abstraction หมายความว่าการแอบสแตรกต์ระดับสูง (iterators, traits, generics) ถูกคอมไพล์เป็นโค้ดเครื่องที่มีประสิทธิภาพเทียบเท่าโค้ดระดับต่ำที่เขียนด้วยมือ ต้นทุนของการแอบสแตรกต์เกิดขึ้นเฉพาะตอนคอมไพล์ (monomorphization) ไม่ใช่ตอนรันไทม์ ## มีอีก 17 คำถาม - attribute ใดที่แนะนำให้คอมไพเลอร์ Rust ทำการ inline ฟังก์ชัน? - ตัวเลือกการคอมไพล์ของ Rust ใดที่เปิดใช้งานระดับการปรับให้เหมาะสมสูงสุด? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Rust อื่นๆ - [พื้นฐาน Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/rust-basics.md): 25 คำถาม, Junior - [Ownership & Borrowing](https://sharpskill.dev/th/technologies/rust/interview-questions/ownership-borrowing.md): 22 คำถาม, Junior - [Structs & Enums](https://sharpskill.dev/th/technologies/rust/interview-questions/structs-enums.md): 20 คำถาม, Junior - [การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/rust/interview-questions/error-handling.md): 18 คำถาม, Junior - [คอลเลกชัน](https://sharpskill.dev/th/technologies/rust/interview-questions/collections.md): 20 คำถาม, Junior - [โมดูลและแพ็กเกจ](https://sharpskill.dev/th/technologies/rust/interview-questions/modules-packages.md): 18 คำถาม, Junior - [Traits](https://sharpskill.dev/th/technologies/rust/interview-questions/traits.md): 22 คำถาม, Mid-Level - [Generics](https://sharpskill.dev/th/technologies/rust/interview-questions/generics.md): 20 คำถาม, Mid-Level - [Lifetimes](https://sharpskill.dev/th/technologies/rust/interview-questions/lifetimes.md): 20 คำถาม, Mid-Level - [Iterators & Closures](https://sharpskill.dev/th/technologies/rust/interview-questions/iterators-closures.md): 22 คำถาม, Mid-Level - [Smart Pointers](https://sharpskill.dev/th/technologies/rust/interview-questions/smart-pointers.md): 22 คำถาม, Mid-Level - [Concurrency Basics](https://sharpskill.dev/th/technologies/rust/interview-questions/concurrency-basics.md): 20 คำถาม, Mid-Level - [async/await](https://sharpskill.dev/th/technologies/rust/interview-questions/async-await.md): 22 คำถาม, Mid-Level - [Testing](https://sharpskill.dev/th/technologies/rust/interview-questions/testing.md): 18 คำถาม, Mid-Level - [Cargo & Ecosystem](https://sharpskill.dev/th/technologies/rust/interview-questions/cargo-ecosystem.md): 18 คำถาม, Mid-Level - [Pattern Matching](https://sharpskill.dev/th/technologies/rust/interview-questions/pattern-matching.md): 18 คำถาม, Mid-Level - [มาโคร](https://sharpskill.dev/th/technologies/rust/interview-questions/macros.md): 20 คำถาม, Mid-Level - [Serde และการ Serialization](https://sharpskill.dev/th/technologies/rust/interview-questions/serde-serialization.md): 20 คำถาม, Mid-Level - [Unsafe Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/unsafe-rust.md): 20 คำถาม, Senior - [Trait ขั้นสูง](https://sharpskill.dev/th/technologies/rust/interview-questions/advanced-traits.md): 22 คำถาม, Senior - [Lifetime ขั้นสูง](https://sharpskill.dev/th/technologies/rust/interview-questions/advanced-lifetimes.md): 20 คำถาม, Senior - [Type System](https://sharpskill.dev/th/technologies/rust/interview-questions/type-system.md): 20 คำถาม, Senior - [Tokio & Async I/O](https://sharpskill.dev/th/technologies/rust/interview-questions/tokio-async.md): 22 คำถาม, Senior - [Memory Management](https://sharpskill.dev/th/technologies/rust/interview-questions/memory-management.md): 20 คำถาม, Senior - [Web Frameworks](https://sharpskill.dev/th/technologies/rust/interview-questions/web-frameworks.md): 22 คำถาม, Senior - [Database Integration](https://sharpskill.dev/th/technologies/rust/interview-questions/database-integration.md): 20 คำถาม, Senior - [Design Pattern ของ Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/design-patterns.md): 20 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/rust/interview-questions/performance-optimization