跳转到内容

#engineering

4 approved public terms with this tag.

Idempotency

/aɪˌdempəˈtənsi/noun
Technology

机器辅助翻译草稿 (Chinese) for "Idempotency": The property of an operation where performing it multiple times produces the same result as performing it once. Idempotent API endpoints are critical for safe retries — if a network error occurs, the client can re-send the request without fear of duplicating side effects like charges or database records.

示例草稿: Pass an idempotency key with payment requests so retries don't charge the customer twice.

CI/CD

/siː aɪ siː diː/noun
Technology

机器辅助翻译草稿 (Chinese) for "CI/CD": Continuous Integration / Continuous Delivery — a set of software engineering practices and tools that automate the process of testing, building, and deploying code changes. CI automatically validates every commit; CD deploys validated code to production frequently and reliably without manual intervention.

示例草稿: The team ships 20 times a day safely because their CI/CD pipeline catches regressions automatically.

机器辅助翻译草稿 (Chinese) for "DevOps": A set of practices, tools, and cultural philosophies that unite software development (Dev) and IT operations (Ops) teams. DevOps breaks down silos, automates repetitive tasks, and instills shared responsibility for the full software lifecycle from code to production monitoring.

示例草稿: After adopting DevOps, their release cycle went from monthly to daily.

API-First

/eɪ piː aɪ fɜːrst/adjective
Technology

机器辅助翻译草稿 (Chinese) for "API-First": A design philosophy where the API contract is defined and agreed upon before any implementation begins. API-first teams treat the API as the product — writing the specification first (e.g., in OpenAPI), getting feedback from consumers, then building both client and server simultaneously against the agreed contract.

示例草稿: Their API-first approach meant the mobile app team could start building against the spec before the backend was done.