查找

Artículo
· 8 ene, 2025 Lectura de 1 min

What Version is My Image?

If you want to find out what exact version your Docker image is (and since the latest image tagging scheme you cannot just rely on the image tag; and assuming you don't want to actually run it just in order to find out) you can run this docker command:

docker inspect containers.intersystems.com/intersystems/irishealth:latest-preview --format '{{ index .Config.Labels "com.intersystems.platform-version" }}'

(of course adapt the image you are referring to)

And the output will be, for example:

2025.1.0L.152.0

I found this useful for example to compare what version I am running vs. other possible available versions. This would be important with minor maintenance releases of EM versions, and, like in my example above, with Developer Preview releases.

Note this docker inspect command is a similar approach as @Dmitry Maslennikov shared here to get the default ports the container uses, and inline with the documentation referring to discovering image defaults (like in Dmitry's case).

1 nuevo comentario
Comentarios (1)1
Inicie sesión o regístrese para continuar
Artículo
· 8 ene, 2025 Lectura de 4 min

Configuration d'un client OAuth2 pour les appels iris-http-calls à Epic on FHIR

Il y a environ un mois, j'ai commencé à travailler sur l'utilisation du logiciel Epic on FHIR.

Création d'une paires de clés publiques-privées

mkdir /home/ec2-user/path_to_key
openssl genrsa -out ./path_to_key/privatekey.pem 2048

Pour les applications back-end, vous pouvez exporter la clé publique vers un certificat X.509 encodé en base64 intitulé publickey509.pem à l'aide de la commande ci-dessous...

Comentarios (0)0
Inicie sesión o regístrese para continuar
Artículo
· 7 ene, 2025 Lectura de 3 min

第六十八章 打印机 - 在 UNIX® 上指定打印机

第六十八章 打印机 - 在 UNIX® 上指定打印机

要在 UNIX 设备名称为 /dev/tty06 的终端上打开 I/O 设备,请输入以下命令

   OPEN "/dev/tty06"

UNIX 系统上,打印机由 OPEN 命令上的名称标识,并在 tty 设备上作为“字符特殊”文件处理。因此,支持的 OPENUSE 命令参数与终端 I/O 相同, 而不是顺序文件 I/O 的参数。

UNIX 上,OPEN 支持大多数终端 I/O 关键字参数,如终端 I/O 中所述。

Comentarios (0)1
Inicie sesión o regístrese para continuar
InterSystems Official
· 7 ene, 2025

新增和即将推出的嵌入式 Git 功能

我们已经有一段时间没有在开发者社区上发表关于嵌入式 Git 的文章了,我想借此机会更新一下今年我们完成的大量工作以及未来的工作计划。

背景信息

如果您要在 IRIS 上构建解决方案,并想要使用 Git,那就太棒了! 只需将 VSCode 与本地 Git 仓库结合使用,并将更改推送到服务器上即可,就是这么简单。

但在以下使用场景中该怎么办:

Comentarios (0)0
Inicie sesión o regístrese para continuar
Artículo
· 7 ene, 2025 Lectura de 1 min

データ容量の見積もりについて

これは、InterSystems FAQサイトの記事です。


質問:

データ容量を見積もる計算式はありますか?


回答:

正確に見積もるための計算式は残念ながらありません。

InterSystems IRIS Data Platformの場合、データ部に関してはデータを全て可変長で格納しますので、各フィールドの平均がどのくらいであるかという目安の数字で平均レコード長を求め、キー部分も同様の計算を行い、必要な容量の推測値を求める必要があります。

インデックス部に関してはキー圧縮されますので、データと同じような上記の計算を行った推測値よりは少なくなることが期待できます。 ただしその圧縮率はデータの特性に大きく影響されますので、どの程度少なくなるかは一概には言えません。

実データのサンプル(例えば、1万件のデータ)をロードし、その時点でのサイズを確認して想定される件数分のデータ容量を推測するというのが現実的な方法となります。

Comentarios (0)1
Inicie sesión o regístrese para continuar