Re: [Neo4j] Hwo to work with indexes in gremlin?

2011-07-19 Thread espeed
The Gremlin Wiki (https://github.com/tinkerpop/gremlin/wiki) is where you can find the Gremlin documentation. Specifically look at the Gremlin Methods (https://github.com/tinkerpop/gremlin/wiki/Gremlin-Methods) and Gremlin Steps (https://github.com/tinkerpop/gremlin/wiki/Gremlin-Steps) cheat

Re: [Neo4j] Synchronization of EmbeddedReadOnlyGraphDatabase - Bug?

2011-07-19 Thread Mathias Hensel
Hello Jim, thanks for your reply. Yes, this is absolutely correct. Mathias Message: 5 Date: Sat, 16 Jul 2011 08:46:57 -0600 From: Jim Webber j...@neotechnology.com Subject: Re: [Neo4j] Synchronization of EmbeddedReadOnlyGraphDatabase - Bug? To: Neo4j user discussions

Re: [Neo4j] How to create a graph database out of a huge dataset?

2011-07-19 Thread Craig Taverner
I'm not sure it's such a good idea to call tx.success() on every iteration of the loop. I suggest call it only in the commit, and after the loop (ie. move it two lines down). Also I think a commit size of 50k it a little large. You're probably not going to see much improvement past 10k. In fact I

[Neo4j] Meetup Berlin next Tuesday

2011-07-19 Thread Andreas Kollegger
Graphistas of Berlin, The right honorable Jim Webber (our Chief Scientist) is headed your way for a visit next Tuesday, to share his deep insights about graph database positioning, deployment, and sharding. Also, he'll walk through the new features of the recently released Neo4j 1.4 Kiruna

[Neo4j] Meetup London - Cyphering on Tuesday

2011-07-19 Thread Andreas Kollegger
London-town Graphistas, Join us next Tuesday, when you can get a closer look at the new features of 1.4, with some special attention paid to Cypher as a new alternative for exploring the Doctor Who graph universe (well, and exploring any graph, of course). As always, there'll be plenty of time

Re: [Neo4j] How to create a graph database out of a huge dataset?

2011-07-19 Thread st3ven
OK, I changed that and will test it if it improves the runtime. Btw. I also changed my timestamp String into a long to reduce the size of my database. Hope to get some tips about faster parsing or optimizing my CSV-file from you guys soon. Cheers Stephan -- View this message in context:

Re: [Neo4j] Meetup London - Cyphering on Tuesday

2011-07-19 Thread Ian Robinson
Correction from space-time continuum this side of the Atlantic: that'll be Weds 27th July (last Weds of the month) for the London meetup. Cypher, Doctor Who and beers are as Andreas has promised. See you there ian On 19 July 2011 16:14, Andreas Kollegger andreas.kolleg...@neotechnology.com

Re: [Neo4j] Meetup London - Cyphering on Tuesday

2011-07-19 Thread Andreas Kollegger
Apologies. I'll update the meetup posting to reflect that date. On Jul 19, 2011, at 12:20 PM, Ian Robinson wrote: Correction from space-time continuum this side of the Atlantic: that'll be Weds 27th July (last Weds of the month) for the London meetup. Cypher, Doctor Who and beers are as

Re: [Neo4j] Fulltext Query across fields

2011-07-19 Thread Mattias Persson
No, which parser to use isn't configurable. You could probably mimic that behavior OR:ing some fields in the query. 2011/6/6 James Swetnam jswet...@gmail.com Hello, When using the native Lucene API, I was able to query across all fields using the MultiFieldQueryParser class (

[Neo4j] body returned from batch rest call inconsistent

2011-07-19 Thread Boris Kizelshteyn
Howdy, When I do create node batches, I get a mix of return data some of which has body={} and others that have body=[{}], is this for a reason or is it a bug? Many thanks! ___ Neo4j mailing list User@lists.neo4j.org

[Neo4j] Neo4j 1.4 / Lucene 3.1 / OSGi - No index provider 'lucene' found

2011-07-19 Thread Jörg Richter
Neo4j 1.4 / Lucene 3.1 / OSGi = java.lang.IllegalArgumentException: No index provider 'lucene' found I'm running in Felix. All Dependencies are resolved (so version 0.0.0 should not be the problem here). 1|Active |5|wrap_mvn_org.apache.lucene_lucene-core_3.1.0 (0.0.0)

[Neo4j] Best way to find all the relationships between nodes which in a list

2011-07-19 Thread Jingex
Hi all, In a case we have several people, name:Mike,Jack,John, as their node id are:1,2,3 We want to find out all the relationships between them. Use Cypher, the query like this: start n = (1,2,3) mathch (n)-[r]-(people) where people.name = Mike or people.name = Jack or people.name =

Re: [Neo4j] Neo4j 1.4 / Lucene 3.1 / OSGi - No index provider 'lucene' found

2011-07-19 Thread cyuczi eekc
I got the same error when trying to use only the source code from github in eclipse and running some neo4j example, i eventually ended up using the precompiled jars which fixed the problem(and I had them point to the source code to see the javadoc), but I would really love to use the latest