(DOORS/DXL) Do multiple reads from a module cause multiple operations serverside?

StackOverflow https://stackoverflow.com/questions/12461143

  •  02-07-2021
  •  | 
  •  

سؤال

I am trying to design my DOORS/DXL script to be efficient in terms of server usage. I would like to know if multiple reads of certain values from a module cause multiple server actions.

Here is some pseudo code

for N objects in aModuleOtherThanTheCurrentlyOpenModule{
      read object N's text
}

Lets say N = 1million. Will this cause 1million accesses to the server?

Thanks

هل كانت مفيدة؟

المحلول

If you load the module,

Module m = read(aModuleOtherThanTheCurrentlyOpenModule, false)

Then it should be loading the entire module to the local client. That would mean that accessing any of the information in the module would be client side at that point. Until you close it via,

close m

However, future releases of DOORS (i.e. DOORS Next Generation which has not yet been released) are unlikely to function this way.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top