検索

質問
· 2016年7月13日

Access namespace files

Hello, guys!

I want to get access to the folder where all files of the namespace are stored using COS. I found a way to get access to class files and found a folder where all csp, html, css etc files are stored.

However, is there any folder which contains all files(even .mac and .int)?  

Or, probably, there is a method which gives all files content?

2 Comments
ディスカッション (2)0
続けるにはログインするか新規登録を行ってください
質問
· 2016年7月1日

Is it still possible to install GlobalsDB on a windows machine? (cross-post)

This is a cross-post so remove if i'm breaking a rule, i just wasn't sure if i was posting to the right place. I've been to the globalsdb website and it doesn't look like i'm going to get much help from there.  

1 Comment
ディスカッション (1)0
続けるにはログインするか新規登録を行ってください
質問
· 2016年7月1日

Is it still possible to install GlobalsDB on a windows machine?

 I try going to http://www.globalsdb.org  not much help there. I'm wanting to use this for a personal project of mine,  if needed i can go to GT.M I just haven't used a linux machine in quite some time and i was hoping to hit the ground running. Any help is appreciated. 

1 Comment
ディスカッション (1)0
続けるにはログインするか新規登録を行ってください
記事
· 2016年5月26日 2m read

NewBie's Corner Session 5 Operator Precedence

NewBie's Corner Session: 5 Operator Precedence

Welcome to NewBie's Corner, a weekly or biweekly post covering basic Caché Material.

Click on the Caché Cube in your system tray and select Terminal to try out the commands.

Order Precedence means the order in which mathematical operators are executed. In a Mathematical expression, you may have Multiplication, Addition, Subtraction, and Division. Which of these are executed first, second, third, etc.?

The basic Operator Precedence of mathematics is:

       Multiplication and Division has precedence over Addition and Subtraction

In normal mathematics when you encounter an expression like 5+7*10, the multiplication and division is executed first, and then addition and subtraction, so 5+7*10 is 75 (7*10=70+5=75).

However, in Caché the Operator Precedence is strictly left to right,

So:  5+7*10=120  (5+7=12*10=120).

Write 5*7+6                       ; Operator Precedence in Caché same as in Mathematics
41                                                          
Write 4+6*10/5                 ; Caché Operator Precedence 4+6=10, 10*10=100, 100/5=20
20
Write 4+(6*10/5)             ; Mathematical Operator Precedence: 4+(60/5)
16

If you want your expressions interpreted a specific way, you must use parenthesis around the expressions you want evaluated first.  Although this concept seems simple enough, I would dare say there is not a Caché/MUMPs programmer alive that has not been bitten by Operator Precedence, keep an eye on this one.

Until next time.

--Mike Kadow

PaulMikeKadow@gmail.com

If you have a comment, please respond through the InterSystems Developer Community, don't send me private email. Unless of course you wish to address me only.

See NewBie Index for an index of all NewBie Corner posts.

There is no reason for any individual to have a computer in his home.

Software comes from heaven when you have good hardware.

The nicest thing about standards is that there are so many of them to choose from.

                Ken Olsen, founder and CEO of Digital Equipment Corporation, 1977

ディスカッション (0)0
続けるにはログインするか新規登録を行ってください
記事
· 2016年5月26日 1m read

Caché and virus scanners

Post updated in August 2025 to include links to IRIS.

I have seen customer problems where the use of a virus scanner running over Caché or IRIS databases was causing intermittent application slowdowns and bad user response times.

This is a surprisingly common problem, so this short post is just a reminder to exclude key Caché and IRIS components from your virus scanning.

2 Comments
ディスカッション (2)3
続けるにはログインするか新規登録を行ってください