Re: [Neo] In-memory Neo

2009-02-01 Thread Johan Svensson
Hi David, Currently there is no in-memory implementation. It would be fairly easy to implement the org.neo4j.impl.persistence.ResourceConnection/PersistenceSource interfaces but you would still have the global transaction manager that would keep a transaction log on disk. The easiest way would

Re: [Neo] In-memory Neo

2009-02-01 Thread Emil Eifrem
On Sun, Feb 1, 2009 at 6:47 PM, Johan Svensson jo...@neotechnology.com wrote: A real implementation optimized of in-memory would require some work. Tobias, didn't you do some work on this for NeoMock and/or RemoteNeo? Maybe something we could refactor out to an InMemoryNeoService at some point.

Re: [Neo] In-memory Neo

2009-02-01 Thread Tobias Ivarsson
On Sun, Feb 1, 2009 at 8:43 PM, Emil Eifrem e...@neotechnology.com wrote: On Sun, Feb 1, 2009 at 6:47 PM, Johan Svensson jo...@neotechnology.com wrote: A real implementation optimized of in-memory would require some work. Tobias, didn't you do some work on this for NeoMock and/or RemoteNeo?

[Neo] In-memory Neo

2009-01-31 Thread David Montag
Hi, I'm developing a small application that is launched through Java Web Start. I want to use Neo for the node space features, but I don't need any persistence, as the application won't need to save any state between runs. What I'm wondering is, is there an in-memory NeoService implementation