查找

公告
· 八月 6, 2024

Online Meetup with the Winners of the Python Contest

Hi Community,

Let's meet at the online meetup with the winners of the Python Contest. It's a great opportunity to chat with the InterSystems Experts team and our contestants.

Winners' demo included!

Date & Time: Thursday, August 8, 12 pm EDT | 6 pm CEST

Join us to learn more about winners' applications and to have a talk with our experts.

➡️ REGISTER TODAY

See you all at our virtual meetup! 

1 Comment
讨论 (1)1
登录或注册以继续
问题
· 八月 5, 2024

Cache \ Database 'size' \ RESIZING - UNIVERSE / UNIDATA

Ok, I am attempting to clarify the required use of the RESIZE command, when you have a UNIVERSE or a UNIDATA DB attached to Cache. Traditional UNIVERSE / UNIDATA databases 'require' that hashed files be re-sized according to historic use, to prevent file overflow (aka. performance issues). It is not clear if that requirement is fully eliminated by attaching one of these databases to Cache. It is clear that, if you do not allocate 'enough' space on Cache for the database 'as a whole', that is a problem. But, Cache space allocation for the database 'as a whole' seems to be separate and distinct from the need to properly size hashed files, on an attached UNIVERSE or UNIDATA database.

 

Can anyone clarify this requirement, and, specify the 'why' to that answer?

6 Comments
讨论 (6)2
登录或注册以继续
公告
· 八月 5, 2024

Tell us about your InterSystems IRIS for Health experience!

Hi Community!

Calling all InterSystems IRIS for Health users! We’re looking to gather reviews on G2 about your experience with the platform.

The first reviewers will receive a $25* gift card, so get your review in now! 

To write a review, please follow the link.

G2 is an independent review site where over a million professionals share opinions on software. The gift card is from G2, so your eligibility to receive it is not affected by the content of your review.

 *25 USD or equivalent

讨论 (0)1
登录或注册以继续
文章
· 八月 5, 2024 阅读大约需 3 分钟

Onboarding con InterSystems IRIS: una guía completa

Actualizado 2/27/25

Hola Comunidad,

Podéis liberar todo el potencial de InterSystems IRIS—y ayudar a vuestro equipo a incorporarse—con toda la gama de recursos de aprendizaje de InterSystems que se ofrecen en línea y en persona, para cada función de vuestra organización. Desarrolladores, administradores de sistemas, analistas de datos e integradores pueden ponerse al día rápidamente.

讨论 (0)1
登录或注册以继续
问题
· 八月 4, 2024

Convert IRIS DynamicArray to Python list

Hello Community,

How to convert the IRIS %DynamicArray into python list. I got " <THROW>TestDyncArray+1^MyLearn.Pyth.NewClass1.1 *%Exception.PythonException <PYTHON EXCEPTION> 246 <class 'AttributeError'>: <unknown exception data>" error when passing array values to python class.

ClassMethod TestDyncArray()
{
	Do ..DyncArrayInPy([1,2,3,4])
}

ClassMethod DyncArrayInPy(numbers) [ Language = python ]
{
	import iris
	print(type(numbers)) ;<class 'iris.%Library.DynamicArray'> need to be a <class 'list'>
	for num in numbers:
		print(num)
}

Thanks!

3 Comments
讨论 (3)1
登录或注册以继续