While HA is one option, with two processes 'sharing' a database, one being the server and the other the embedded app, there is another option, and that is to integrate the two apps. If your app is a web-app and also needs to exist in something like jetty or winstone, perhaps you could run both the server and your app together in the same process? One obvious way of doing this is to write your app as a server extension within the neo4j-server extensions API. I suspect there are other ways to do this where your app is in control and simply accesses (and starts) the relevant code from neo4j-server, but I don't know how to do that. Could be interesting to find out.
On Tue, May 24, 2011 at 11:39 PM, Adriano Henrique de Almeida < [email protected]> wrote: > Yep, > > the neo4jserver is just a rest api over neo4j database, so it's still > stored > in at the disk. So, all you need to do, is to point your java application > to > the neo4j db directory. > > Remember, that you'll be unable to start both you app and the neo4j server > at the same time, at the same database. For this situation, you'll need > Neo4j HA. > > Regards > > 2011/5/24 Chris Baranowski <[email protected]> > > > Hi all, > > > > I searched this mailing list some but couldn't find a definitive answer: > > is it possible to use the web admin with an embedded neo4j database? I'd > > like to run embedded in my project and also be able to administrate > online. > > > > Thanks! > > Chris > > _______________________________________________ > > Neo4j mailing list > > [email protected] > > https://lists.neo4j.org/mailman/listinfo/user > > > > > > -- > Adriano Almeida > Caelum | Ensino e Inovação > www.caelum.com.br > _______________________________________________ > Neo4j mailing list > [email protected] > https://lists.neo4j.org/mailman/listinfo/user > _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

