go to post Dmitry Maslennikov · Nov 24, 2023 Your question is only about Vista, and it's not developed not supported by InterSystems
go to post Dmitry Maslennikov · Nov 24, 2023 It does sound like an issue with third party application Vista, not IRIS itself, you should find their channels for the questions
go to post Dmitry Maslennikov · Nov 24, 2023 All packages have to be installed into <Installdir>/mgr/python, check this folder if it contains the required module You have to specify the target folder in irispip irispip install --target <installdir>\mgr\python <package> Check the relevant documentation
go to post Dmitry Maslennikov · Nov 23, 2023 Congrats on the first project, and thanks A few questions, have you looked at SpringBoot, Hibernate, and Liquibase? Would you consider using any of those libraries, in this project?
go to post Dmitry Maslennikov · Nov 21, 2023 This property is missing in ZPM, and probably some more Could you raise an issue in the repo about it
go to post Dmitry Maslennikov · Nov 17, 2023 Any transactions that not committed, will be rollbacked in case if systems shutdowns When system was terminated unexpectedly, during the start it checks if any transactions were left uncommitted and rollbacks them it needs for logical integrity of the data
go to post Dmitry Maslennikov · Nov 15, 2023 <PROTECT> means that you don't have enough permissions to read this database And there is no simple answer to it, the easiest way is to add %All role to the user, which tries to access data.
go to post Dmitry Maslennikov · Nov 13, 2023 I don't have any requests for any improvements for the plugin if you wish to try and have some ideas what needs to be added, you are welcome in issues
go to post Dmitry Maslennikov · Nov 10, 2023 So, this means that customers not migrated yet from Caché to IRIS, now need to add additional upgrades for servers. That would not help them. Or they will just stick to the 2023.* versions.
go to post Dmitry Maslennikov · Nov 10, 2023 Does this mean IRIS will refuse to install/start if it detects an unsupported processor? Apple's processors M* specifically were not mentioned, but I suppose it's as part of ARM64v8 support?
go to post Dmitry Maslennikov · Nov 8, 2023 FHIR is only a part of the journey, the most important is that so many competing software are already on the market. The issue appears in cases when some applications could get updates and support for anything new, some not. Still, both of them would be required to communicate with each other and it will keep using some way or another some old standards anyway.
go to post Dmitry Maslennikov · Nov 8, 2023 $list is a binary format, quite complex actually. And you don't need to know this for your scenario you can use this functions, which may help you with the task $listvalid - check if the string is a $list, while $listvalid("") is also true $listlength - counts listitems in $list $listfind - search for particular item in the presented $list
go to post Dmitry Maslennikov · Nov 8, 2023 Yes, you can do it, with tag <Invoke>, which can call any classmethod, which will do what you want
go to post Dmitry Maslennikov · Nov 8, 2023 There is no direct way of setting environment variables using ObjectScript. And there are some caveats to doing it. Have a look at this project, it's quite tricky, it uses callout in c, to make it working I would recommend finding another way of doing what you would want to achieve, instead of using environment variables
go to post Dmitry Maslennikov · Nov 7, 2023 This command will only create file CACHE.DAT on Caché, or IRIS.DAT for IRIS, and to be able to see it in portal, you have to create Config.Database as well But, I would recommend using %Installer Manifest, it's available for many years, and in Caché as well The simplest installer would look like this XData setup { <Manifest> <Default Name="Namespace" Value="IRISAPP"/> <Default Name="database" Value="irisapp"/> <Namespace Name="${Namespace}" Code="${Namespace}" Data="${Namespace}" Create="yes" Ensemble="no"> <Configuration> <Database Name="${Namespace}" Dir="${mgrdir}${database}/data" Create="yes" Resource="%DB_${Namespace}"/> </Configuration> </Namespace> </Manifest> } You can find more examples on GitHub
go to post Dmitry Maslennikov · Nov 1, 2023 What is the issue with it? Do you have any particular errors?
go to post Dmitry Maslennikov · Nov 1, 2023 well, this is a good hack, but there are a few notes worth mentioning it will affect the performance of the code it will not work on processes that running not from Terminal So, it is only suitable for debugging purposes, do not use in production
go to post Dmitry Maslennikov · Oct 31, 2023 Well, I did some notes about Vectors in my article, about the project I tried to implement. Basically, it's possible by using neural network based algorithms calculate vectors for any texts, index them in the database, and search using vector search for any text query. The results in this case will not find texts which are exact to the search query, but with using similarity, the closest to the query. And it can be used with mostly any language, types of the texts, files and so on, even pictures, or videos.
go to post Dmitry Maslennikov · Oct 31, 2023 FYI, incorrect login/password should be status 401403 when access to something above the granted roles use Status property in %CSP.Response set %response.Status = 401 // or set %response.Status = 403