cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Forum Posts

About the Drivers & Stacks category

All applications using Neo4j depend on drivers to execute statements to update or query data. Neo4j drivers are mostly built on the binary Bolt protocol. Official drivers exist for Java, JavaScript, .Net, Python, and Go and more. Other languages (R, ...

yolande by Community Team
  • 576 Views
  • 0 replies
  • 0 kudos

Neo4J OGM querying issue

Hi, I'm Akila and I'm doing a small personal project to build a property searching system. I'm using spring boot with a neo4j database and I'm trying to query from the neo4j database using filters because I need the querying to be dynamic too. In my ...

Uery returning multiple types

Hello, I use sdn rx library but in an imperative way. I have 3 nodes type : @Node("App") public class App { @Id @GeneratedValue Long id; @Property("name") String name; @DynamicLabels List<String> nodeLabels; } @Node("C...

madiskou by Graph Buddy
  • 307 Views
  • 0 replies
  • 0 kudos

Java Async vs Reactive driver

We are currently using Java async driver with Neo4j 4.0. I had a look at your presentation here where performance results, notably for memory consumptions, are presented to be very better with new Reactive driver. I would like to know how far is the ...

Neo4jRule so slow

We want to migrate from Neo4j 3.5 to 4.0 and we have also to migrate integration tests using jUnit Neo4jRule. The new one with version 4.0 is very slow to start and stop compared to version 3.5. Is it normal ? Do we have to enable/disable something i...

Access Remote database subgraph for pagerank algo

Hi, I'm trying to utilize a page rank algorithm on a subgraph of a remote database (https://disease.ncats.io/browser/). I wanted to use the networkx page rank method, but I don't know how to connect the remote database or even just load the subgraph ...

akn35 by Node
  • 526 Views
  • 1 replies
  • 0 kudos

Resolved! Add label to node sdnrx

Hello, I am trying to use sdn rx in my project. How can i model my node in java to obtain labels when i load a node ? @Node("App") public class App { @Id @GeneratedValue Long id; @Property("name") String name; List<String> n...

madiskou by Graph Buddy
  • 1058 Views
  • 5 replies
  • 0 kudos

URGENT! Java vs .NET Driver performance

Hello! I'm happy to inform you that after a year of testing a lot of graph databases, implementing their drivers into my project, troubleshooting and more I have decided to use Neo4j as main database for my Bachelors degree project. I'm programming i...

New Golang driver perf stats vs. seabolt wrapper

Hi, first off, congrats on the new native Golang driver! That's awesome work. I noticed you have a stress test here: https://github.com/neo4j/neo4j-go-driver/blob/1.8/neo4j/test-integration/stress/stress.go Have you run any perf stats / comparisons ...

Neo4-java-driver in jbpm

Hello Togehter i did put together a project with javadriver within eclipse and it works fine. but when adding the java driver dependency to jbpm 7.35 as a project artefact i get the following error when i want to edit data-objects. java.lang.ClassNo...

Edit, Update a Neo4j database with Django

Hello, I've populated a Neo4j database, and now I want to edit it with Django. Tried with neomodel, But I'm locked with the Django Forms queryset which use the objects, and neomodel nodes. I cannot find any example that edit a Neo4j db. Is there a wa...

Multi tenant - Shared Database on Neo4j

Hello everyone, I am new to graph databases and trying to learn neo4j. I'm trying to implement a multi-tenant shared database model using graph databases. In relational databases I have achieved this goal by tenant_id column in every table. I am awar...