go to post Evgeny Shvarov · Sep 8, 2016 A few years ago we played with running Caché on ARM devices with eltechs. And it runs at least.
go to post Evgeny Shvarov · Sep 7, 2016 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.
go to post Evgeny Shvarov · Sep 5, 2016 Also see this article which describes yet another way to install Caché based solutions.
go to post Evgeny Shvarov · Sep 5, 2016 Hi, Mike!See the good conversation here related to your question.
go to post Evgeny Shvarov · Sep 4, 2016 Hi, Mark!It is filed again and I hope will be queued soon for the recent sprint.About general RSS: what about this?
go to post Evgeny Shvarov · Sep 2, 2016 Thanks, Fabian! Also, would like to introduce again code guidelines we use in Russian office for Caché ObjectScript.
go to post Evgeny Shvarov · Aug 17, 2016 Hi, Ponnumani. I've changed the title to closer to the question version.
go to post Evgeny Shvarov · Aug 17, 2016 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 }
go to post Evgeny Shvarov · Aug 16, 2016 Tips & Tricks tag introduced. Use it for your Tips and Tricks experience regarding InterSystems Technology.
go to post Evgeny Shvarov · Aug 12, 2016 Hi, Amir!I use CacheUpdater to keep plenty of virtual machines (f.e. 30+ virtual machines) up to date with the certain set of Caché Utilities, which can be updated just with Caché classes download from github repo and compile.CachéGithubCI is continuous integration tool for development with Github repositories as Eduard already mentioned.
go to post Evgeny Shvarov · Aug 12, 2016 Hi, Ponnumani!The right name of the technology is InterSystems Caché, thank you!You can find more than 100 free online courses with exercises on InterSystems Caché and other InterSystems products on this site.
go to post Evgeny Shvarov · Aug 10, 2016 Hi, Doug!Yes, it doesn't work now properly. We plan to exclude this option from the menu to use only external links.
go to post Evgeny Shvarov · Aug 3, 2016 Hi, Michal! Just fixed it for you.You had the subscription to content types due to the bug, like described here.Now you have "healthy" subscription to new posts only (one time) and you can turn it off in your settings page.
go to post Evgeny Shvarov · Aug 1, 2016 Hi, Jose!You can use Log method of %Exception class.Here is the related discussion.