go to post Rob Tweed · Aug 28, 2018 Thanks Ward for raising awareness of the QEWD / IRIS demo while I'm away!Evgeny - I'm on holiday right now and quickly integrated IRIS with the Conduit / RealWorld back-end code before I left - I didn't have much time and hadn't tested the demo out. It's actually an interesting "hybrid" version of the back end that works with both WebSockets (the version you see in this demo) and REST (which you would see if you pointed a "vanilla" Conduit front-end at it. I pushed out a new version of QEWD to formally integrate IRIS, and also a new supporting module: https://github.com/robtweed/ewd-qoper8-irisJust specify the database type as "iris" in your QEWD startup file, and provide the other parameters (username, password, namespace etc) just as for Cache.Needless to say, the demo you see works identically, with exactly the same Node.js code, for all supported databases, so you'll just have to take my word, for now, that it really is working with IRIS! :-) Actually the performance will indicate that it's hooked up to a pretty fast DB (and yes, it really is IRIS, running on an AWS EC2 Ubuntu machine): see the response time recorded in the raw response messages that you'll see if you enable your browser's JavaScript console. All the data is being stored in IRIS as persistent JSON - see Slide decks (part 17 onwards) here:http://docs.qewdjs.com/qewd_training.htmlWhen I get back from holiday, time-permitting, I intend to put together some proper, updated source code for the Conduit app that people can try for themselves, using pure REST (which is probably what many / most want to see) and also (again time-permitting) do a MicroService-based version. However, the code base you've found will give you an initial idea how a QEWD / IRIS application would be written (though there have been some enhancements that have simplified some of the coding still further since I wrote the Conduit app). This slide deck is up to date and explains the way you write REST apps these days:https://www.slideshare.net/robtweed/ewd-3-training-course-part-31-ewdxpr...I'll also check out the Comments asap to see if / why they aren't working as you report.In the meantime, enjoy!Rob
go to post Rob Tweed · Aug 14, 2018 Can you provide me with an IRIS license and cover the cost of the GCP Cloud Hosting for the purpose of a demo?
go to post Rob Tweed · Aug 14, 2018 If you can provide me access to an IRIS system on GCP Cloud, then sure.What functionality would you like to see, and what would the target audience be?Note: I'm not around to do anything until early SeptemberRob
go to post Rob Tweed · Aug 11, 2018 As QEWD makes use of the InterSystems Node.js connector which is available for both Cache and IRIS, the answer is yes.
go to post Rob Tweed · Aug 10, 2018 Alternatively...For those interested in exploring and using MicroServices with all versions of Cache today, QEWD.js has provided a very cool set of Open Source solutions and advanced functionality for a year now.The full detail is described in the following parts of the Online QEWD.js Course:https://www.slideshare.net/robtweed/ewd-3-training-course-part-43-using-json-web-tokens-with-qewd-rest-serviceshttps://www.slideshare.net/robtweed/ewd-3-training-course-part-44-creating-microservices-with-qewdjshttps://www.slideshare.net/robtweed/ewd-3-training-course-part-45-using-qewds-advanced-microservice-functionalityAnd QEWD.js is an ideal and very powerful, modern Open Source REST platform for Cache. See:https://www.slideshare.net/robtweed/ewd-3-training-course-part-31-ewdxpress-for-web-and-rest-services And all for free :-)
go to post Rob Tweed · Aug 7, 2018 This is one of those things that becomes dead easy when you use Node.js (and use QEWD to integrate Cache with Node). There's almost always a tried and tested module out there already that will do the stuff you want, eg in this case:https://www.npmjs.com/package/csvtojsonAnd once in JSON format, you can transform it to whatever other JSON format you want using:https://github.com/robtweed/qewd-transform-json
go to post Rob Tweed · Jul 31, 2018 QEWD supports Cache Objects for those who wish to use them via the cache.node APIs for Cache Objects.:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...Your handler logic (which runs in a QEWD Worker process) has access to these APIs via the "this.db" object, eg this.db.invoke_classmethod()The following post is a bit old and refers to how you used these APIs in EWD.js. However, change the invocation to this.db.xxx() and the examples should work in QEWD:https://groups.google.com/forum/#!searchin/enterprise-web-developer-comm...Personally I prefer to use the Cache database as a persistent JSON database / Document Database, via the ewd-document-store abstraction that is used by QEWD, and integrate that storage into JavaScript Objects. But Cache Objects will work with QEWD and GraphQL just fineRob
go to post Rob Tweed · Jul 31, 2018 As I release my code as Open Source, I've no idea of usage stats. There's growing interest in the use of GraphQL in the community I work within these days, for all sorts of reasons.QEWD is a re-badging of EWD 3, so yes, it is supported in QEWD - which of course is straightforward since QEWD is JavaScript/Node.js and can just use the Facebook JavaScript GraphQL module.Just making the point that GraphQL and support for it in Cache isn't something new, as those who follow our work at M/Gateway will know :-)Rob
go to post Rob Tweed · Jul 30, 2018 Just for the record, GraphQL access to Cache has been supported in EWD.js and EWD 3 (the fore-runners to QEWD.js) since 2015:https://groups.google.com/forum/#!searchin/enterprise-web-developer-comm...https://groups.google.com/forum/#!searchin/enterprise-web-developer-comm...
go to post Rob Tweed · May 31, 2018 You could take a look at this, which was originally designed, some 4 years ago, to provide browser-based terminal roll&scroll access to VistA. If you're familiar with Node.js, you should be able to adapt it for your own use:https://github.com/robtweed/ewdVistATerm
go to post Rob Tweed · May 8, 2018 The idea of connecting Node.js to Cache is to write your logic in JavaScript, except for where you need to invoke legacy code. It makes little sense to invoke COS built-in functions such as $h via cache.node.With that in mind, have you looked at QEWD.js, which makes the integration of Node.js and Cache very much simpler? See:https://qewd.js.comTo expand the concept of using JavaScript rather than COS as the language for your logic, you might want to take a look at this: https://www.slideshare.net/robtweed/data-persistence-as-a-language-feature
go to post Rob Tweed · Mar 16, 2018 Probably a good idea to continue this thread here instead:https://groups.google.com/forum/#!forum/enterprise-web-developer-community
go to post Rob Tweed · Mar 16, 2018 The way I'd do this is to not do any JSON handling in Cache itself, but output the data into a temporary global whose structure reflected the desired JSON structure. Then on the Node.js / QEWD side, point a DocumentNode object at the global and use its getDocument() method - that will generate a JS object containing your data. Finally delete the global using the DocumentNode object's delete() method
go to post Rob Tweed · Nov 12, 2017 Hi Malcolm - I hope you mean Node.js 0.10 :-) 0.1 predates even my earliest experiments with Node.js in 2010!You'll need to talk to your ISC account rep to get the latest cache.node builds.So the next thing you need to do is look at QEWD.js (http://qewdjs.com) to see how you can really begin to use Cache with Node.js productivelyRob
go to post Rob Tweed · Nov 12, 2017 The version of cache.node must match:- the OS you're using (in your case 64-bit Windows)- the version of Node.js you're using - you haven't specified thatUnfortunately InterSystems so far haven't done the sensible thing and publish cache.node in NPM, so you may or may not find that the versions of cache.node included with your Cache distribution support the version of Node.js you wish to use.
go to post Rob Tweed · Oct 19, 2017 My presentation made reference to a Google V8 API bottleneck issue. Here's the link to the bug tracker report:https://bugs.chromium.org/p/v8/issues/detail?id=5144#c1and the detailed benchmark tests that illustrate the problemhttps://bugs.chromium.org/p/v8/issues/attachmentText?aid=240024
go to post Rob Tweed · Oct 19, 2017 Slide deck for my presentation on "data persistence as a language feature" is here:https://www.slideshare.net/robtweed/data-persistence-as-a-language-feature
go to post Rob Tweed · Sep 25, 2017 If any of you are in the London area on Wednesday evening this week, why not come along to the LNUG meeting? I'll be giving a presentation, based on my "Cake" article. See:https://lnug.org/