On cache limits are global...
Posted: 2014-03-27T22:26:15-07:00
In http://www.imagemagick.org/script/architecture.php
given following configuration:
If I do the following on the same machine at the same time in two different processes:
then it will likely be that a-256-MB.jpg is converted fast in RAM but b-256-MB.jpg is converted slow using disc?
Just want to double-check:Note, the cache limits are global, meaning if you create several images, the combined resource requirements are compared to the limit to determine the pixel cache storage disposition
given following configuration:
Code: Select all
<policymap>
<policy domain="resource" name="memory" value="256MiB"/>
<policy domain="resource" name="area" value="256MB"/>
<policy domain="resource" name="disk" value="1GiB"/>
</policymap>
Code: Select all
convert a-256-MB.jpg out1.png &
convert b-256-MB.jpg out2.png &