Re: [Neo4j] Unique index nodes

2011-06-30 Thread Michael Hunger
I'll look into that in the next few days. Michael Sent from my iBrick4 Am 30.06.2011 um 16:25 schrieb Matt Chambers : > I asked this same question a little while ago, the answer is that its up to > you to guarantee uniqueness. There are a few different ways to to this, for > now I took the ea

Re: [Neo4j] Unique index nodes

2011-06-30 Thread Matt Chambers
I asked this same question a little while ago, the answer is that its up to you to guarantee uniqueness. There are a few different ways to to this, for now I took the easy way out and do all writes with a single thread. I'm basically just using a ThreadPoolExecutor with a single thread and differ

[Neo4j] Unique index nodes

2011-06-30 Thread V
I have an element of my node marked with @Indexed String name I want to ensure that when I persist nodes, only one node with that name gets persisted. (I want to throw an error here and ask the user to give a different name) What is the best way to ensure this. Any suggestions ? - Karan ___