Does anyone have suggestions for improving the performance of Rappid?
It has to run in IE (which is performing 10x slower than Chrome). Loading a graph with 1000 squares and 1000 connectors is taking 215s.
I don't have anything fancy in my code, I'm just loading the graph from a JSON file:
graph.fromJSON(JSON.parse(input));
My paper is set to async = true, which offers a large boost. And loading from JSON seems to be significantly faster than creating all the nodes programmatically.
I've tried the suggestions here: https://groups.google.com/forum/#!topic/jointjs/dbdOrINRG8o but I couldn't get FastPaper working in IE at all.