jalapeno-api-gateway / network_graph_visualizer

A simple SR App to visualize networks
0 stars 0 forks source link

Use websockets to increase performance #1

Open marcom4rtinez opened 1 year ago

severindellsperger commented 1 year ago

I just looked at the code. It looks nice, but I think we could make small improvement before the WebSocket implementation: It would be good to have an intern data structure for nodes/links and use the subscription service to update it. So, the polling in the front end could still use the polling mechanism but every time it would only return the intern data instead of requesting all nodes/links again.

marcom4rtinez commented 1 year ago

I agree, currently trying to build a PoC for this.