[Neo] online backup

2009-07-28 Thread Jerry Juanico
Hi Emil I'm new to neo4j and some of my program works as I wanted it to be. But implementing the online backup I came across to this error: *07 29, 09 9:36:05 AM org.neo4j.onlinebackup.NeoBackup doBackup INFO: Initializing NeoBackup. Exception in thread "main" org.neo4j.impl.nioneo.store.StoreFai

Re: [Neo] Side effect

2009-07-28 Thread Neil Ellis
Hi Mattias Cool, you guys do get stuff fixed fast. All the best Neil On 28 Jul 2009, at 12:10, Mattias Persson wrote: > I just committed a fix for it (rev. 3017) ... it should do the trick > > 2009/7/28 Mattias Persson : >> You're absolutely right... I see the problem in the iterator >> impleme

Re: [Neo] Side effect

2009-07-28 Thread Mattias Persson
I just committed a fix for it (rev. 3017) ... it should do the trick 2009/7/28 Mattias Persson : > You're absolutely right... I see the problem in the iterator > implementation of that method. I or Johan will fix that soon. > > 2009/7/27 Neil Ellis : >> Hi guys >> >> I noticed a side-effect in the

Re: [Neo] Ref Node for traversal & adding Keywords to nodes and edges question

2009-07-28 Thread orla . spillane
Hey Anders, Thanks for the response: Heres my traverser code: public static GraphVO traverseByKeywordOnly(Node refNode, final String keyword) { GraphVO graph = new GraphVO(); Traverser startKeywordTraverser = refNode.traverse(Traverser.Order. BREADTH_FIRST, StopEvaluator.END_OF_GRAPH,

Re: [Neo] Ref Node for traversal & adding Keywords to nodes and edges question

2009-07-28 Thread Anders Nawroth
Hi Orla! > However I have 2 problems with my traverser. First I want to pass a node to > start my traverser on, I am passing the reference node as I thought all > nodes were connected to this but the traverser doesn't go to any other > nodes? Is there a way I can get a random starting node or is t

[Neo] Batchinserter methods

2009-07-28 Thread Rob Challen
I'm using the batchinserter to build a graph. I'm not sure if what I am seeing here is something I am doing wrong or something in the batchinserter. For one task I need to check whether a relationship already exists to a target node and perform a test on the target node, before deciding whether to

Re: [Neo] Querying total number of primitives used

2009-07-28 Thread Anders Nawroth
Hi, You'll find the answer here: http://stackoverflow.com/questions/252/counting-primitives-in-neo4j/ /anders Bert FitiƩ skrev: > Hi, > > Is there a way to query an existing database for the total number of > primitives (nodes, relationships, properties) used? > > -- Bert > __

Re: [Neo] Side effect

2009-07-28 Thread Mattias Persson
You're absolutely right... I see the problem in the iterator implementation of that method. I or Johan will fix that soon. 2009/7/27 Neil Ellis : > Hi guys > > I noticed a side-effect in the iterator for all nodes. > > If you do not do a hasNext() before a next() you get a no such element > except