Evgeny Shvarov · Sep 12, 2016 go to post

I think, this is a matter of use case.

If you have a great use case with Caché on ARM (Raspberry Pi or iPhone/Android) you can make PoC  even with eltechs.

And if it would be the matter of performance InterSystems can port and support it. See the list of supported platforms, it changes from version to version.

Anyone has a winning use case of it? 

Evgeny Shvarov · Sep 12, 2016 go to post

Thank you Elizabeth! I would add mac variant: press Alt+e then e again and you get é.

Evgeny Shvarov · Sep 10, 2016 go to post

Hi, Ponnumani!

Are you looking for the InterSystems classroom courses?

You can learn InterSystems Caché, Ensemble, Healthshare or DeepSee on classroom courses in Cambridge, London, Moscow or other InterSystems offices and get official Certificate of completion for every course.

Also, I can recommend the great way to learn Caché and other InterSystems technologies on our new InterSystems online  learning site - learning.intersystems.com.

Evgeny Shvarov · Sep 10, 2016 go to post

The official name of the database technology is InterSystems Caché.

But sometimes people are lazy, or they have no é letter on the keyboard and use Cache in their articles, questions and answers in the meaning of Caché.

Which can be confusing when you try to search the Internet looking for the information on DBMS Caché and find information about memory cache.

I always try to search for 'InterSystems Caché' or 'InterSystems cache' to get relevant search results.

Evgeny Shvarov · Sep 9, 2016 go to post

If you want to get rid from spaces in the string you can use $translate too.



USER> set s=" The string with spaces  "

USER> write $translate(str," ", )

Thestringwithspaces
Evgeny Shvarov · Sep 7, 2016 go to post

Hi, Nael!

Have you seen this demo: http://37.139.4.54/ClassExplorer/?

After installation just open the URL:  http://yourserver:57772/ClassExplorer/

and it should work.

Regarding you second question on CSP :

/ClassExplorer web app is REST web app, which can be determined once the web app has Dispatch class (ClassExplorer.Router in this case).

If so this app only serves the REST URLs which are listed in dispatch class URL map.

Hope this helps.

Evgeny Shvarov · Sep 4, 2016 go to post

Hi, Mark!

It is filed again and I hope will be queued soon for the recent sprint.

About general RSS: what about this?

Evgeny Shvarov · Aug 17, 2016 go to post

For  all the InterSystems Caché newcomers I would strongly  recommend using curly braces syntax instead of dot syntax for stack management. 

So this:

For I=1:1:10000 New X Do

 . Set X=I

 . Write !,X

Can be rewritten to:

For I=1:1:10000 New X Do {

        Set X=I

        Write !,X

}