Evaluate software minimum requirements

前端 未结 5 1812
傲寒
傲寒 2021-02-09 23:42

Is there a way to evaluate the minimum requirements of a software? I mean, how can I discover, for example, the minimum amount of RAM that my application will need?

Than

5条回答
  •  时光说笑
    2021-02-10 00:34

    Ideally, you'd decide on the minimum requirements of a piece of software based on your target audience, and then test your software during development on that configuration to ensure it delivers a satisfactory experience.

    You can look at a system running your software and see how much memory is being consumed by your application, and use that to guide how much memory is being consumed. CPU is a little bit more complex - you could try to model your CPU requirements, but doing this accurately can be challenging.

    But ultimately, you need to test your app on the base system you are targeting.

提交回复
热议问题