发布新帖

查找

请注意,此帖子已过时。
公告
· 五月 17, 2022

[Video] Securing FHIR Applications with OAuth 2.0 (Part 2)

Hey Developers,

In the second part, you will learn how to build a FHIR Application with OAuth 2.0 and OKTA:

⏯ Securing FHIR Applications with OAuth 2.0 (Part 2)


🗣 Presenter: @Patrick Jamieson, Product Manager IRIS for Health, InterSystems 

Subscribe to the InterSystems Developers YouTube channel and stay tuned!

讨论 (0)1
登录或注册以继续
问题
· 五月 16, 2022

How to distinguish whether a variable is a pure numeric string or a number, such as "123" and "123".

HI Guys.

I want to know how to distinguish whether a variable is a pure numeric string or a number, such as "123" and "123".

I only know an inelegant way.

ClassMethod IsNumber(n)
{
	s ret=0
	try{
		s ret= $lb(n)=$lb(+n)
	}catch e{
		s ret=0
	}
	q ret
}

Is there any other way to implement it

13 Comments
讨论 (13)2
登录或注册以继续
文章
· 五月 6, 2022 阅读大约需 1 分钟

最大ネームスペース数とデータベース数

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

1つのインスタンスで作成可能なネームスペース数の上限は、2048個になります。

ただし多数のネームスペースを使用するには、それに合わせてメモリの設定が必要になります。使用するメモリの設定については下記の関連トピックご参照ください。
管理ポータルのメモリ関連設定項目について

また1つのインスタンスに作成可能なデータベース数(リモートデータベースを含む)の上限は、15998個になります。
なおライセンスの種類によっては、作成可能な数に制限が設けられています。 

詳細については、以下ドキュメントをご参照ください。
ドキュメント:ネームスペースの構成
ドキュメント:ローカル・データベースの構成
 

讨论 (0)1
登录或注册以继续
讨论 (7)2
登录或注册以继续
讨论 (6)5
登录或注册以继续