请参考以下文档:Installing InterSystems IRIS on Microsoft Windows > Windows User Accounts

"在安装InterSystems IRIS时,你必须选择Windows用户帐户来运行InterSystems服务。有两个选择。
默认的SYSTEM帐户(Windows本地系统帐户)。这是在最小的安全安装中使用的。
一个已定义的Windows用户帐户。
在默认的SYSTEM帐户下运行Windows InterSystems服务对许多安装来说是合适的,但在某些情况下会导致与文件权限和网络安全访问有关的问题。如果你预计InterSystems IRIS实例在这些方面有潜在的问题,例如由于你的网络配置或安全安排,为Windows InterSystems服务指定一个具有所需权限和/或访问权的帐户,如一个域管理员帐户。
关于如何在安装后改变服务帐户的说明,请参见 "管理Windows用户对InterSystems IRIS实例的访问 "部分。

Changing the InterSystems Service Account

<install-dir>\bin\IRISinstall.exe setserviceusername <instance-name> <username> <password>

来自英文社区的回复:

In general, SOAP should be used over should probably be used over CSP as CSP is only recommended for legacy applications:

https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...

There's a lot of different ways the difference in latency could be added, from Authentication differences to how the page is being handled.

As SOAP is still getting active development, it's also possible that optimizations have been built in for SOAP that haven't for CSP.

Others may be helpful for how to code optimizations in the CSP page if you want to go that route, but SOAP is the preferred way.

It gives you a greater degree of control compared to some languages. I'm not aware that many other languages have a sort thats particularly more sophisticated in reality its probably doing the same just 'under the covers' as theyre higher level than objectscript. The alternative is to pass the data out to whatever front end you're using and have it sort prior to displaying but then most likely its the client doing that work rather than your server. 

与某些语言相比,它给你更大程度的控制。我不知道许多其他语言是否有一个特别复杂的排序,实际上它可能只是在 "掩盖 "做同样的事情,因为它们在objectscript更上面一层。另一种方法是将数据传递给你使用的任何前端,让它在显示之前进行排序,但这样做很可能是由客户端做这项工作,而不是由你的服务器做。

我们之前将数据传入新的索引,以利用objectscript数组的自动排序特性,根据我们希望组织数据的方式,使用基于数字或字母的索引。

例如:s NewData(Data(Key, "Name")) = Data(Key)

对于对象类或映射的globals,我们最近倾向于使用sql查询来对数据进行排序。

还有json和动态数组,可以用于集合/数组数据的存储。

We've previously passed the data into new indices to utilise the auto sorting nature of the objectscript arrays, using a number based or alphabetical index depending on how we're hoping to organise the data.

eg. s NewData(Data(Key,"Name")) = Data(Key)

With object classes or mapped globals we tend to use the sql queries to sort the data as required lately. 

There are the json and dynamic arrays that can be used for collection / array data storage.