การเพิ่มประสิทธิภาพการสร้างและการทดสอบ
ใช้แคช การประมวลผลระยะไกล และการสร้างแบบเพิ่มทีละน้อย เพื่อลดเวลาการสร้างและการทดสอบใน Monorepo ขนาดใหญ่ลงอย่างมาก
การเพิ่มประสิทธิภาพการสร้างและการทดสอบ เป็นบทเรียน Git Advanced: Monorepo, Submodules & Workflows ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Git Advanced: Monorepo, Submodules & Workflows และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Git Advanced: Monorepo, Submodules & Workflows มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Faster Builds, Faster Feedback
Welcome! In large monorepos, build and test times can become a major bottleneck. Slow feedback loops hurt developer productivity and can delay releases.
This lesson will show you how to significantly speed up these processes by applying advanced optimization techniques.
The Monorepo Performance Challenge
Why do monorepos often struggle with performance?
- Scale: A single repository can contain hundreds of projects.
- Interdependencies: A small change in one project might affect many others.
- Traditional CI: Often rebuilds and retests everything on every commit, which is highly inefficient.
Introducing Build Caching
Imagine your computer remembering the exact output of a task it just did. That's build caching!
- It stores the results (artifacts) of previous build or test commands.
- If the inputs (code, configurations) haven't changed, it reuses the stored output.
- This avoids redundant work and saves a lot of time.
Local Caching in Action
Monorepo tools like Nx and Turborepo implement local caching automatically. When you run a command, they check a local cache first.
If a cached result exists for the exact inputs, it's retrieved instantly instead of re-running the task.
# First run (may be slow)
npm install
nx build my-app
# Second run (instant, cached)
nx build my-appScaling with Remote Caching
Local caching is great for individual developers, but teams need more. Remote caching shares these cached build artifacts across everyone!
- If a project was built or tested by a teammate or CI, you can download the cached result.
- This means fewer builds from scratch for the entire team and faster CI/CD pipelines.
Incremental Builds: Affected Commands
Why rebuild your entire frontend application if you only changed a backend API? This is where incremental builds come in.
Also known as "affected" commands, they identify and process only the projects that have been impacted by your recent code changes.
How Incremental Builds Work
Monorepo tools create a dependency graph – a map of how all your projects connect.
When you make a change, the tool uses this graph to intelligently determine:
- Which projects were directly modified.
- Which other projects depend on the modified ones.
Only these "affected" projects are then built or tested.
# Run tests only for projects affected by recent changes
nx affected:test
# Build only affected libraries
turborepo run build --filter="[HEAD^...]"Distributing Work: Remote Execution
Even with caching and incremental builds, some tasks are just computationally intensive. Remote execution helps by distributing parts of a build or test command across multiple machines.
This turns a single, long-running task into many smaller, parallel tasks that complete much faster.
Benefits of Remote Execution
Remote execution significantly boosts performance by:
- Parallelization: Running many tasks simultaneously.
- Resource Scaling: Leveraging cloud resources or dedicated build farms.
- Faster Feedback: Getting build and test results back much quicker.
It's especially powerful for large test suites and complex compilation steps.
Check Your Understanding
Which technique focuses on reusing the outputs of previous tasks to avoid redundant work, assuming the inputs haven't changed?
Recap: Optimize Your Monorepo!
You've learned powerful strategies to optimize build and test performance in monorepos:
- Build Caching: Store and reuse results of past tasks, both locally and remotely.
- Incremental Builds: Use dependency graphs to only process projects affected by changes.
- Remote Execution: Distribute heavy workloads across multiple machines for parallel processing.
Mastering these techniques is essential for maintaining developer productivity in any growing monorepo.
คำถามที่พบบ่อย
บทเรียน “การเพิ่มประสิทธิภาพการสร้างและการทดสอบ” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การเพิ่มประสิทธิภาพการสร้างและการทดสอบ” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Git Advanced: Monorepo, Submodules & Workflows ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Git Advanced: Monorepo, Submodules & Workflows มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การเพิ่มประสิทธิภาพการสร้างและการทดสอบ”
ใช้แคช การประมวลผลระยะไกล และการสร้างแบบเพิ่มทีละน้อย เพื่อลดเวลาการสร้างและการทดสอบใน Monorepo ขนาดใหญ่ลงอย่างมาก คุณปฏิบัติ Git Advanced: Monorepo, Submodules & Workflows ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Git Advanced: Monorepo, Submodules & Workflows หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Git Advanced: Monorepo, Submodules & Workflows บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “การเพิ่มประสิทธิภาพการสร้างและการทดสอบ” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Git Advanced: Monorepo, Submodules & Workflows นี้ได้ไหม
ได้ บทเรียน Git Advanced: Monorepo, Submodules & Workflows ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- เจ้าของโค้ดและการควบคุมการเข้าถึง
- การเพิ่มประสิทธิภาพการสร้างและการทดสอบ
- กลยุทธ์การย้ายไปใช้ Monorepo
- การจัดการดีเพนเดนซีและเวอร์ชันใน Monorepo