Accuracy rate is a measure of our prediction results, and it is a measure of how many of the predicted positive samples are actually positive.
The recall rate is for our original sample, and it shows how many positive examples in the sample were correctly predicted.
Accuracy = Predicted correctly/All
If we want to be able to retrieve as much content as possible, this is the pursuit of "recall ratio", namely A/(A+C), the bigger the better.
Hello, developers!
In this article, we will focus on OAuth2, a protocol that is increasingly being used in combination with FHIR to perform authorization.
In this part 1, we will start up the Docker container for IRIS for Health and Apache, configure the OAuth2 authorization server function on IRIS for Health, access it from the REST development tool Postman, and obtain an access token. Besides, in Part 2 and beyond, we will add FHIR repository functionality to IRIS for Health, add OAuth2 resource server configuration, and explain how to execute FHIR requests with access tokens from Postman.
I finished my participation in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during this the training final day. Tips presented in the day 5:
- %SYSTEM package has general utiliy classes. Use $system.class.Help() to list the utilities. The main %SYSTEM classes are Encryption (industry encryption methods), OBJ to manage classes and objects, Security for security methods and SQL to use SQL language.
Hey Developers,
Enjoy watching the presentation of the IRIS-REST-API-DATABASEMANAGER app that allows you to create persistent Tables and Data in InterSystems Cache Database:
Hello,
Thanks for your time,
We would like to know if there is a recommended way to look for if a service has a port in use in each Instance's / Namespace's Production?
We ask because of currently if we need to look if a port is used, we check in Studio every Namespace (there are more than 5) and every Instance (there are four)
I and other developers want to know if do we need to ask permission for the creator to translate an article to portuguese? Sometimes we send a message requesting authorization, but we don't receive a answer, what we do?
Regards.
Hey Developers,
See how the InterSystems IRIS FHIR Server allows you to develop and deploy your FHIR applications on AWS without manual configuration and deployment:
⏯ Getting Started with the InterSystems IRIS FHIR Server on AWS
This is the first InterStstems programming contest that we participated in! Come check out and vote for us!
The overbooking management system combines the unique conditions of the hotel, such as room prices, order channels, customer needs (etc...). System uses machine learning algorithms (such as: KNN/ES-RNN...) to accurately predict the daily no-show and occupancy rate of the hotel, and further combines with the revenue equation to find the best largest room sales volume, which can significantly increase the hotel marginal revenue.
Hey Developers,
This week is a voting week for the InterSystems Multi-Model Contest! So, it's time to give your vote to the best solutions built with InterSystems IRIS.
🔥 You decide: VOTING IS HERE 🔥
How to vote?
Getting this error when starting up Caché:

I've recently deleted several Caché namespaces to clear up space, turned Caché off, and then this started happening. Caché cube is grey, but only the start Caché option is unavailable.
Caché is still running, but just not completely:

The Windows Event Viewer application has the following error: .png)
There are also the following logs in the mgr/cconsole.log file. I can provide more if necessary.
03/03/21-14:18:23:206 (13360) 0 START: C:\InterSystems\Cache\mgr\journal\20210303.I have 2 instances of Cache, one of 2010 and the other 2016. On both I have created a SSL Configuration with same name.
When I connect to a SOAP Service Client from Cache 2010, I get the above error.
If I connect from Cache 2016, the connection get through.
How can get more details of the error in the Cache 2010 instance to be able to fix this issue.
I have enabled the SOAP Log and it does not give much of details.
Regards
Anil
There's been quite a bit of discussion lately in this forum on the tools available in IRIS for using both XML and JSON, and debate on cross-conversion between the two formats.
A week or so ago I posted details of a set of tutorials I'd put together on integrating the Node.js-based QEWD technology with IRIS, working over a network. As part of that set of tutorials, I've been detailing how to use the various multi-model capabilities of the build-in QEWD-JSdb abstraction of IRIS.
Just curious if anyone tried to use HTTP/2 in their Caché projects?
And InterSystems thoughts about adding support for this new version.
Hi Community,
Enjoy watching the new session recording from the InterSystems AI+ML Summit 2021:
Hi ,
I have a requirement to programmatically fetch and update a Business Process Setting . It's a custom property , added in extended class .
I am trying find a sample, but no luck.
Could any one help me ?
Hey Developers,
Here is a digest of the Developer Community videos on InterSystems Developers YouTube Channel in February 2021:
New Tool Available
Please see PerfTools IO Test Suite for a later version of the Random Read IO tool.
Purpose
This tool is used to generate random read Input/Output (IO) from within the database. The goal of this tool is to drive as many jobs as possible to achieve target IOPS and ensure acceptable disk response times are sustained. Results gathered from the IO tests will vary from configuration to configuration based on the IO sub-system. Before running these tests ensure corresponding operating system and storage level monitoring are configured to capture IO performance metrics for later analysis.
Hi Developers!
We had a set of technology bonuses for the InterSystems Grand Prix contest.
Good day, developers!
The "apptools-admin" project is not only a set of tools for the administrator, but a platform for the rapid creation of a prototype of any solution. For example, Photo Album, Music Player, and Personal Library all come together in a user-friendly treasure chest design.
Load http:// your-host:your-port/apptoolsrest/a/infochest
Change the path to your treasure files and start viewing, listening or reading from any convenient device: desktop, tablet or smartphone.

Hi folks!
Sometimes when we develop a mockup or PoC there is a need for a simple interface that will provide data in IRIS in JSON against SQL queries.
And recently I contributed a simple module that does exactly that:
accepts SQL string and returns the JSON.
How to install? Just call:
zpm "install sql-rest"
If you install it in a namespace X it will setup a /sql endpoint to your system that will accept POST requests with SQL string and will return the result for you for the data available in the namespace X.
Hello all,
Is there any command or way to update the versionid on windows similar to the "iris update <instance> versionid=<version>" on linux?
I have one block of code that not working as it was supposed to in in SQL. I am using it in a routine
&sql(update X_X.X set LocalEnvironment=1 where %ConfigName IN('X_X_X', 'Y_Y_Y'))
using the above SQL query I am trying to set a property(LocalEnvironment) which is defined as boolean. But the query is not enabling the property. FYI- We have extended businessprocess class to create a new property.
This is the first InterStstems programming contest that we participated in! Come check out and vote for us!
The overbooking management system combines the unique conditions of the hotel, such as room prices, order channels, customer needs (etc.). System uses machine learning algorithms (such as: KNN/ES-RNN.
If you want to start IRIS as a service on CentOS7 you can use systemd.
Login as root and create a new file iris.service in /etc/systemd/system.
# vi /etc/systemd/system/iris.service
[Unit] Description=Intersystem IRIS Service After=network.target [Service] Type=forking WorkingDirectory=<iris-install-dir> User=root ExecStart=<iris-inst-dir>/bin/iris start "<instance>" ExecStop=<iris-inst-dir>/bin/iris stop "<instance>" quietly Restart=on-abort [Install] WantedBy=default.target
<iris-install-dir> = Directory where you installed IRIS on Centos7 i.e.
I'm participating in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during the training. Tips presented in the day 3:
- You can see your class catalog using %Dictionary classes and see your sql objects into INFORMATION_SCHEMA table.
- Is possible use SQL inside your ObjectScript methods using Dynamic SQL or Embedded SQL.
- You can pass parameters into Dynamic SQL string using ? (eg.: where country = ?) and pass parameters to Embedded SQL using colon (ed.: where country = :variable).
I'm participating in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during the training. Tips presented in the day 2:
- You can create persistent classes (classes with a correspondent table in the database to persist class properties).
- An Persistent class example:
Class dc.
Today we had an issue where a couple of our IRIS "processes" had a status of "Dead".
How do I configure IRIS so that, when that happens, IRIS will log an event to messages.log or alerts.log?
We are forwarding the contents of both of those logs to Splunk for analysis, and I'd like to be able to see those events in there as well.
hello, I had build a DocDB referring the code from here: https://community.intersystems.com/post/how-can-i-create-properties-doc…
Here are the structure of the json Documents I have added in my database called 'Orders'.
✓ 424 published apps in total
✓ 655 downloads in February
✓ 902 developers joined

189