[Neo4j] Re: Connecting Neo4j with R

2021-01-25 Thread Florent Biville
Hi, There is some ongoing work on Neo4r regarding 4.x support. I believe Neo4r should still work with Neo4j 4.x, as the REST APIs it uses are still there. If you find that is not the case, your next best bet would be to try this pull request and see if it works: https://github.com/neo4j-rsta

Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-17 Thread Florent Biville
Hi, I'm currently working on the issue with Stanford NLP, it's probably just a classpath conflict with JAXB. If you really want to programmatically create migrations, you can, using directly `liquigraph-core` and instantiating `Changelog` objects, but this will require some extra efforts. I think

[Neo4j] Pessimistic locking in Cypher

2015-05-26 Thread Florent Biville
Hi everyone, My use case (probably not common but not the only one either) is to ensure the database is accessed sequentially. As you can find in my initial Stack Overflow post , Liquigraph

[Neo4j] Schema#awaitIndexOnline forever?

2015-05-10 Thread Florent Biville
Hi, I'm trying to run the following snippet (with Neo4j v2.2.1 / impermanent graph database): try (Transaction tx = graphDB.beginTx()) { IndexDefinition definition = graphDB.schema() .indexFor(Labels.ARTIST) .on("name") .create(); graphDB.schema().awaitIndexOnli

[Neo4j] Re: When not to use Neo4j

2015-05-10 Thread Florent Biville
I would say whenever the data set cannot fit on a single machine. This is not a definitive nogo as you can always shard the data yourself and spread across several (preferably co-located) Neo4j instances but this is far from ideal in most cases, I guess. On Saturday, 9 May 2015 11:07:15 UTC+2,

Re: [Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-22 Thread Florent Biville
+1, Michael Hunger wrote: > > Hi Florent, > > as a workaround can you add > > org.neo4j:neo4j-io:2.2-M02:test-jar > > to your dependencies? > > It seems maven does not resolve transitively type:test-jar dependencies :( > > Cheers, Michael > > On 12

Re: [Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-21 Thread Florent Biville
own >> neo4j-jdbc against 2.2.0-M01, but I’m not sure because I haven’t tried. >> >> -- >> Chris Vest >> System Engineer, Neo Technology >> [ skype: mr.chrisvest, twitter: chvest ] >> >> >> On 03 Dec 2014, at 20:41, Florent Biville wrote: >&g

[Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-03 Thread Florent Biville
Hi, I've just run a build against the 2.2.0.M01 milestone and I get the following error: java.lang.RuntimeException: java.sql.SQLException: java.lang.NoSuchMethodError: org.neo4j.cypher.javacompat.ExecutionEngine.execute(Ljava/lang/String;Ljava/util/Map;)Lorg/neo4j/cypher/javacompat/ExecutionR

Re: [Neo4j] newbie help please: neoclipse displays no nodes in graph

2014-06-21 Thread Florent Biville
This not a direct reply to your issue but why don't you use Neo4j browser? It is way more user-friendly than Neoclipse. On Sunday, 22 June 2014 02:28:52 UTC+2, Jeremy Posner wrote: > > > any reply please ? > > thx > > On Saturday, 10 May 2014 10:10:22 UTC+1, Jeremy Posner wrote: >> >> thansk for

[Neo4j] Maven archetype for Neo4j server

2014-06-21 Thread Florent Biville
Hi everyone, After having released a Maven archetype for Neo4j embedded , I have started to work on an archetype for Neo4j server . However, I'm not 100% sure what could be the b

[Neo4j] Re: Maven archetype for Neo4j embedded

2014-06-21 Thread Florent Biville
I'm happy to announce the archetype is finally available from Maven Central. To give it a try: mvn archetype:generate -Dfilter=maven-embedded-neo4j-archetype On Wednesday, 18 June 2014 13:36:49 UTC+2, Florent Biville wrote: > > Hi everyone, > > I just wanted to let you know

[Neo4j] Re: Current Store File Composition

2014-06-18 Thread Florent Biville
Hi, The presentation you are mentioning is already 2 years old (therefore pre-2.0). I have recently blogged about this (in FR tho: http://florent.biville.net/?post/2014/06/09/Neo4j-sous-le-capot). I think the reference source remains the manual as you said, but you could also check Neo4j sour

[Neo4j] Maven archetype for Neo4j embedded

2014-06-18 Thread Florent Biville
Hi everyone, I just wanted to let you know I created a maven archetype that will allow everyone to get started quickly with (embedded) Neo4j. I am still waiting for an access to Maven Central before I can release, however, you can already build the archetype locally. You can find everything h

Re: [Neo4j] performance with many relationships per node

2014-04-24 Thread Florent Biville
Sorry to reply to this old thread, but I'm actually facing the situation you're describing at the end: having possibly many rels to traverse. As you mentioned, the fix in 2.1 won't fix this and there is the workaround you describe above or even, as Mark Needham and Cédric Fauvet told me, the pos

Re: [Neo4j] [Testing / Java] Simpler test assertions with AssertJ-Neo4j

2014-01-22 Thread Florent Biville
(first) issue filed: https://github.com/joel-costigliola/assertj-neo4j/issues/1 !! Feel free to comment it if you have refinements or other Cypher-result-related use cases in mind. On Wednesday, 22 January 2014 18:50:20 UTC+1, Florent Biville wrote: > > Hi, > > The only service &

Re: [Neo4j] [Testing / Java] Simpler test assertions with AssertJ-Neo4j

2014-01-22 Thread Florent Biville
t; Neo4j 2.0.0 - > (graphs)-[:FOR]->(everyone)<http://blog.neo4j.org/2013/12/neo4j-20-ga-graphs-for-everyone.html> > Do something useful - Teach your kids 1 hour code! <http://code.org/learn> > > > On Wed, Jan 22, 2014 at 12:41 AM, Florent Biville > &

[Neo4j] [Testing / Java] Simpler test assertions with AssertJ-Neo4j

2014-01-21 Thread Florent Biville
Hi everyone, Although I have announced this a while ago on my blog, I realize I did not mention the first release of AssertJ-Neo4j to the official group here. First things first, AssertJ