Performance anti patterns

前端 未结 18 1087
天涯浪人
天涯浪人 2021-02-05 19:29

I am currently working for a client who are petrified of changing lousy un-testable and un-maintainable code because of \"performance reasons\". It is clear t

18条回答
  •  轮回少年
    2021-02-05 19:58

    Changing more than one variable at a time. This drives me absolutely bonkers! How can you determine the impact of a change on a system when more than one thing's been changed?

    Related to this, making changes that are not warranted by observations. Why add faster/more CPUs if the process isn't CPU bound?

提交回复
热议问题