Evaluate software minimum requirements

前端 未结 5 1816
傲寒
傲寒 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:27

    Given the data structures used by the application, estimate how much space they will take up in normal use. Using that estimation, set up a number of machines (virtual or physical) to test the estimate in different scenarios (i.e. different target operating systems, different virtual memory settings, etc).

    Then measure the performance of the application in the different scenarios. Your minimum settings will be the machine that performs the least adequately while still being acceptable.

提交回复
热议问题