-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can NodeJS be usef for push messaging? #9
Comments
I need more information. Node.js is suitable push mechanism like Server sent events/websocket bidirectional data transportation. |
Thanks Yosuke for reply. Data is related to products/articles. Stock update is in CSV file - size approx 190KB Price update API gives around 50k json objects. I need more information. Node.js is suitable push mechanism like Server sent events/websocket — |
@kulinchoksi I know some cases to create push architecture by Node.js. Every cases consider to avoid sync API and avoid stop EventLoop. If you try and you get some problems, feel free to ask those problems in here. |
closing for now, reopen to pursue further happy coding ✅ |
I don't have used Node JS neither any push messaging platform but have read about both and have some problems which could be solved by mechanism like push messaging.
I'm not sure this is right place to ask such question but found that I can ask question related to Node JS here.
We need to import large data from one application to some other applications frequently (want to do it real time in best scenario) hosted by our own (for now) servers.
Instead of importing data with pull mechanism I think, push mechanism would be better and I came across Node JS and had a thought that whether can be used for push mechanism in such scenarios or not.
In most of the Node JS examples, I saw it used to connect back end service with front end like browser but in my case, I'm thinking to use it to connect both ends in server side only like one service communicating to other in back end (without knowing to front end like browser).
I need to know point of view of people who have experience with such problems and also with Node JS.
Thanks.
The text was updated successfully, but these errors were encountered: