中英文词汇表对照

计算机网络

中文 英文  
幂等性 Idempotence  
无状态 Stateless  
非对称加密 Asymmetric encryption  
瓶颈 Bottlenecks  
指数 Exponential  
弹性 Resilience  
抖动 Jitter  
分区容错 Partition Tolerance  
流量洪峰 Traffic spikes  

操作系统

中文 英文  
时间片 Time slice  
内核 Kernel  

Java

中文 英文  
垃圾回收器 garbage collecter  
动态代理 dynamic proxy  
多态 Polymorphism  
封装 Encapsulation  
继承 Inheritance  
平行 horizontal 一般是水平扩容,horizontal scale
垂直 vertical  
信号量 semaphore  
可重入锁 ReentrantLock  
自旋锁 spin lock  
尺度 Scale  
泛型 Generics  
ACID
+ Atomicity - Each transaction is all or nothing
+ Consistency - Any transaction will bring the database from one valid state to another
+ Isolation - Executing transactions concurrently has the same results as if the transactions were executed serially
+ Durability - Once a transaction has been committed, it will remain so
 
单一服务 monolithic  
元空间 Metaspace  
年轻代 / 老年代 Young / Old Generation  
异步 Asynchronism  
同步 Synchronism  

Spring

中文 英文  
控制翻转 Inversion of Control  
prometheus prometheus(pro mi ti ers)  

设计原理

中文 英文  
防腐层 Anti-Corruption Layer  
界限上下文 Bounded Context  
充血模型 Rich Model  
贫血模型 Anemic Model  
聚合 Aggregate  
高内聚 High Cohesion  
低耦合 Low Coupling  
中台 Middle Platform Shared Services Platforms
架构演进 Architecture Evolution Software architecture evolves.
粗算 back-of-envelope  
google的聚类算法 MapReduce  
权衡取舍 Trade-Offs  
副本 Replicas  
主从 Master-Slave  
不均衡 inevenly  
原子的 Atomicity  
调优 tuning  
基线 Benchmark  
反向代理 Reverse proxies  
熔断 Circuit Breaker  
限流 Rate Limiting  
降级 Graceful Degradation  
灰度发布 Canary Release  
滚动更新 Rolling Update  
蓝绿部署 Blue-Green Deployment  
多租户 Multi-tenancy  
吞吐量 Throughput  
容错性 Fault Tolerance  
可扩展性 Scalability  
健壮性 Robustness  

数据库

中文 英文  
反范式设计 Denormalized Design
数据库架构 Database schema  
联合索引 Composite Index
数据分片 Data Sharding
数据一致性 Data Consistency
最终一致性 Eventual Consistency  
强一致性 Strong Consistency  

算法

中文 英文  
递归 Recursion  
回溯算法 Backtracking  
剪枝算法 Pruning  
…几次方 power of  
动态规划 Dynamic Programming (DP)  
深度优先搜索 Depth-First Search (DFS)  
广度优先搜索 Breadth-First Search (BFS)  
阶乘 Factorial  
Modulo Operation  
哈希冲突 Hash Collision  

消息队列

中文 英文  
死信队列 Dead Letter Queue (DLQ)  
延迟消息 Delayed Message  
消息积压 Message Backlog  
发布/订阅 Publish/Subscribe  
幂等消费 Idempotent Consumer