Re: [jgrapht-users] Query about scalability using JGraphT
Brought to you by:
barak_naveh,
perfecthash
From: Randall R S. <rs...@so...> - 2007-04-11 00:57:25
|
On Tuesday 10 April 2007 17:06, Lokeya Venkatachalam wrote: > I will do that testing and see. But I am just curious if anyone has > done this before. > To be more precise, will it scale to represent 1 million document , > where each document is 1KB in size which is around 1GB of data in > form of nodes. The amount of internal storage associated with each node is not a factor in the performance of the JGraphT code. That concerns only the magnitude of the node and arc sets, the graph's topology and what operations you invoke. 32-bit Java Virtual Machines can comfortably manage 1 GB heaps. Naturally, you must have the full GB of physical RAM available for the JVM. Randall Schulz |