Hi, Neo4j requires a filesystem and that filesystem may be mounted in RAM or not. You can only control the location of the graph store through the API but it has to be on a supported filesystem.
On Linux a in memory graph db can easily be created using /dev/shm: GraphDatabaseService inMemoryGraphDb = new EmbeddedGraphDatabase( "/dev/shm/graphdb" ); Regards, Johan On Tue, Jun 7, 2011 at 7:24 AM, udayan khurana <[email protected]> wrote: > Hi all, > > I am curious to know whether I can control the storage of my graph with > Neo4J through the API. I didn't find any documentation related to that. > > Thanks > Udayan _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

