Design Patterns (or techniques) for Scalability

前端 未结 5 975
既然无缘
既然无缘 2021-01-29 18:56

What design patterns or techniques have you used that are specifically geared toward scalability?

Patterns such as t

5条回答
  •  一整个雨季
    2021-01-29 19:32

    A few patterns that come in mind:

    • Stateless application
    • Loose coupling
    • Asynchrony
    • Lazy loading
    • Caching
    • Parallelism
    • Partitioning
    • Routing

    Some resources:

    • Scalability Best Practices: Lessons from eBay
    • Availability & Consistency presentation of Amazon's CTO Dr. Werner Vogels
    • Microsoft PDC'08 Presentations
    • Best Practices In Building Scalable Cloud Ready Service Based

提交回复
热议问题