This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

Enhancements

From HL7Wiki
Revision as of 23:46, 24 March 2005 by Hsolbrig (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Performance

There have been requests for batch functions - the ability to queue up a set of operations and then perform them as a single operation. :* What operations need to be batched?

  • Should this be implemented as additional operations where needed:
reply[] = function(Arg arg[])
  • Or should there be an overall control structure of some sort:
beginBatch()
function(Arg arg)
function(Arg arg)
...
function(Arg arg)
reply[] = doBatch()