For faster updates after the initial build, use incremental builds:
Copy
# Build incrementally (only process new data)arc build --incremental
Incremental builds are much faster because they only process data that has changed since the last build. This is especially useful for large repositories or daily updates.
For large repositories, you may want to limit the scope of the build:
Copy
# Limit to the last 100 commitsarc build --max-commits 100# Limit to commits from the last 30 daysarc build --days 30# Combine limitsarc build --max-commits 100 --days 30