Open Trass3r opened 4 years ago
I tried to compile an ALLOW_MEMORY_GROWTH
version. It showed conflict with the legendary WASM mode which is what vis.js does.
16MB is a quite small number as default. Maybe we can start with 64MB. Even more, expose an option to let the user choose.
Any update on this? I would really like to use this tool but my use case are really big graphs..
@stenbln could you please provide some examples? A gist would be great.
Then If I add around 1000 more nodes in the left subgraph and around 1000 nodes in the right subgraph, when I connect each of the nodes from the left subgraph to at least one (or more) nodes in the right subgraph, i get the same out of memory exception.
I am on a similar situation. I really want to visualize my graphs on a nicer way than raw SVG, but they are quite big too
I have a workaround, specify TOTAL_MEMORY
at full.render.js
Example:
Module = Module || {};
Module.TOTAL_MEMORY = 1024 * 1024 * 1024; // Allow 1GB