Serialization
The process of converting structured data into a format suitable for transmission or storage. Common serialization formats include JSON (text-based, human-readable), Protocol Buffers (binary, schema-driven), XML (verbose, self-describing), and MessagePack (binary JSON). HTTP APIs typically use JSON with Content-Type: application/json. The choice of serialization format affects payload size, parsing speed, and interoperability.
Связанные протоколы
Упоминается в руководствах
Timeout Budget Patterns for Microservices
Error Handling Patterns
FastAPI Response Models and Status Codes
Framework Cookbooks
API Response Time Optimization: From Database to Wire
Performance & Optimization
Migrating from REST to gRPC
Migration & Upgrades
API Testing Strategies: Unit, Integration, Contract, and E2E
Testing & Mocking