सामग्री पर जाएं

#engineering

4 approved public terms with this tag.

Idempotency

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

मशीन-सहायता अनुवाद मसौदा (Hindi) 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

मशीन-सहायता अनुवाद मसौदा (Hindi) 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.

मशीन-सहायता अनुवाद मसौदा (Hindi) 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

मशीन-सहायता अनुवाद मसौदा (Hindi) 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.