-
Hi Daffl and anybody reading, I'm in the research phase of building a public transportation backend API that tracks the real time location of the vehicles (bus, trains). The data source for this is a real time API made available by my government. The layer I want to implement is a layer that helps dispenses these data in real time without burdening the original service. Essentially, we call the original API, cache the data / do some manipulation, then send it out in real time to active clients. Effectively, it means the original API only has one client connected instead of thousands. I've come across this issue on which the linked article by @daffl helps clarify some stuff on how to do so. What I learned is that I can create a service to connect to an external API and Feathers will handle the real time part. My question is:
Kind Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Automatic real-time functionality will only work when the Feathers API is also used to modify the data. If the data changes externally you will have to implement your own mechanism to get the changed data and send the appropriate real-time events. |
Beta Was this translation helpful? Give feedback.
Automatic real-time functionality will only work when the Feathers API is also used to modify the data. If the data changes externally you will have to implement your own mechanism to get the changed data and send the appropriate real-time events.