Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试设计我的 DOORS/DXL 脚本以提高服务器使用率。我想知道从模块中多次读取某些值是否会导致多个服务器操作。
这是一些伪代码
for N objects in aModuleOtherThanTheCurrentlyOpenModule{ read object N's text }
假设 N = 100 万。这会导致对服务器的 100 万次访问吗?
谢谢
如果加载模块,
Module m = read(aModuleOtherThanTheCurrentlyOpenModule, false)
然后它应该将整个模块加载到本地客户端。这意味着此时访问模块中的任何信息都将是客户端。直到你通过关闭它,
close m
但是,DOORS 的未来版本(即尚未发布的 DOORS Next Generation)不太可能以这种方式运行。