InterSystems Official Mark Hanson · Feb 27, 2023 2m read

I wanted to provide a heads up of an improvement in how we generate and call method code in IRIS 2023.1.

A class in IRIS is composed of two main runtime components:

  1. Class Descriptor - A highly optimized list of methods, properties, class parameters that make up the class along with attributes associated with each of these e.g. public/private setting.
  2. ObjectScript code - A set of routines that contain the ObjectScript code to be executed when a method is called.
10
3 968
Question Mark Hanson · Sep 1, 2016

Is there any update on when the RSS feed will be fixed to finally include a Title field. This was reported about 5 months ago. Specifically:

The RSS feed for groups (or communities as the link currently says) does not include a title, e.g. for:

https://community.intersystems.com/group/8081/feed

Starts with:

    <title></title>
    <link>https://community.intersystems.com/group/8081</link>
    <description></description>

So there is no title or description of this feed. Also is there a feed for all content posted to this site, so not filtered by tag/group at all?

1
0 234
Article Mark Hanson · May 11, 2016 1m read

Often when debugging COS code you get an error message such as '<UNDEFINED>test^routine *test' so the first thing you want to do is to take a look at this code and see what it is doing. From the command line you can:

ZLOAD routine ZPRINT test

Which means splitting the $zerror information into the routine name and the line and adding the zload/zprint commands. Also you often want to view the lines above the one where the error happened as this gives you some context of how you got to this line, using ZPRINT you could 'ZPRINT +1:test' but that may display hundreds of lines.

6
0 1002
Question Mark Hanson · Apr 8, 2016

When I goto the main developer community page:

https://community.intersystems.com/

When I turn on network monitoring this root page takes over 6s to load, this is with the other pieces of the page already cached on a nice fast network connection, the by the time the other requests are made it is at around 6.7s! A few other attempts were slightly better at around 5s. By comparison if I look at stackoverflow.com I see the browser completely done in <1s, the content itself takes just 433ms.

4
0 353
Question Mark Hanson · Mar 9, 2016

I noticed a lot of sites these days support use of Gravatar user profile pictures so your profile picture can follow you around from site to site, could we support this here?

 http://en.gravatar.com/

Also there appears to be some HTML bug in the user profile edit page, when I click on the 'edit' tab I see options to edit the profile for a fraction of a second before this closes and I am unable to edit anything.

5
0 326