|
|
|
|
|
by tasogare
1994 days ago
|
|
It depends on how the graph is stored in the database. In this project the nodes ids are TEXT so it will likely not scale very well. I know because I use a similar implementation with GUID as string in Sqlite in a project since a couple of years and while it works fine for the graph I have (<1 million nodes, few edges per nodes) it won’t perform too well past that. |
|
https://github.com/schinckel/ulid-postgres/blob/master/ulid....