Skip to main content

Home/ Semantic-Web-Web3.0/ Group items tagged jo4neo

Rss Feed Group items tagged

Erwin Karbasi

Neo4j Blog: The top 10 ways to get to know Neo4j - 0 views

  • The common domain implementation pattern when using Neo4j is to let the domain objects wrap a node, and store the state of the entity in the node properties. To relieve you from the boilerplate code needed for this, you can use a framework like jo4neo (intro, blog posts), where you use annotations to declare properties and relationships, but still have the full power of the graph database available for deep traversals and other graphy stuff. Here's a code sample showing jo4neo in action:view sourceprint?public class Person {  //used by jo4neo  transient Nodeid node;  //simple property  @neo String firstName;  //helps you store a java.util.Date to neo4j  @neo Date date;  // jo4neo will index for you  @neo(index=true) String email;  // many to many relation  @neo Collection<role> roles;    /* normal class oriented  * programming stuff goes here  */}</role>
Erwin Karbasi

NoSQL Graph Database Comparison | Javalobby - 0 views

  • A few days ago I published a short overview of the most trendy graph databases. Today I'm bringing you a review of the most important features of them. As you can see the current ecosystem is quite bit, without general uniformity, although this is normal when analyzing an ongoing technology movement.  As you can see in the previous table,  there are substantial differences that can help our projects. Next we are going to analyze these main differences.
1 - 4 of 4
Showing 20 items per page