q***s 发帖数: 2243 | 1 java开发过程中,关于 scalable 的问题,应该有哪些要注意的? | b******y 发帖数: 1684 | 2 what phrase you are at now?
【在 q***s 的大作中提到】 : java开发过程中,关于 scalable 的问题,应该有哪些要注意的?
| q***s 发帖数: 2243 | 3 It is an interview question. | r*****l 发帖数: 2859 | 4 Carefully architect your system to:
1, Create layers.
2, Create loosely-coupled layers.
3, Make layers easily clustered.
4, The horizontal expansion of one layer should not affect other layers, and
should not require down time.
5, Leave hooks for logging/tuning.
6, Make deployment build on convention and metadata driven.
【在 q***s 的大作中提到】 : java开发过程中,关于 scalable 的问题,应该有哪些要注意的?
| q***s 发帖数: 2243 | 5 Thanks a lot! Appreciated if there are more links on this! | s******e 发帖数: 493 | 6 Scalability includes both herizontal and vertical.
For herizantol scalability you should pay attention to tier your app
carefully (read j2ee blueprint would be helpful to you), not leak concerns
among the tier, code your solution component based, and try to avoid
singleton class,etc |
|