Mercurial > hg > orthanc
view OrthancServer/Resources/Samples/Lua/CallDcm2Xml.lua @ 5346:566e8d32bd3a
Reduce the frequency of memory trimming from 100ms to 30s to avoid high idle CPU load
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 29 Jun 2023 09:43:20 +0200 |
parents | d25f4c0fa160 |
children |
line wrap: on
line source
function OnStoredInstance(instanceId, tags, metadata) -- Assume Latin1 encoding in dcm2xml local args = {} table.insert(args, '+Ca') table.insert(args, 'latin-1') Delete(CallSystem(instanceId, 'dcm2xml', args)) end