当前位置:   article > 正文

neo4j中索引的使用_neo4j索引

neo4j索引

    neo4j可以对node和relationship中的属性建立索引,索引中的node(relationship)和属性对key-value为多对多的关系。一个node(relationship)可以在某索引中存储多个属性对,一个属性对也可以对应到多个node(relationship)。

代码:    

  1. Node node1 = graphDb.createNode();
  2. node1.setProperty("name","easypoint");
  3. Node node2 = graphDb.createNode();
  4. node2.setProperty("name","csdn");
  5. nodeIndex.add(node1,"name",node1.getProperty("name"));
  6. nodeIndex.add(node1,"name","haha");
  7. nodeIndex.add(node2,"name",node2.getProperty("name"));
  8. nodeIndex.add(node2,"name","haha");
  9. for(Node node :nodeIndex.get("name","haha")){
  10. System.out.println(node.getProperty("name"));
  11. }
结果:

  1. easypoint
  2. csdn

    在neo4j中,索引可以分为两类:neo4j本身既是关于relationship的索引实现;基于独立索引引擎,如Apache Lucene的索引机制。通常情况下,我们所说的索引指第二种情况。按照索引的对象可以将索引分为两类:基于node的索引和基于relationship的索引。

    与oracle等关系型数据库不同的是,neo4j中索引的维护由用户自行管理(索引内容的增删改)。索引的维护必须在事务范围内。每个索引具有一个名称,neo4j根据名称来查找或者创建索引。

    维护索引时,有一点需要特别注意:更新索引时,需要手工删除对应的更新项,然后在添加更新后的项; 如下所示:

  1. // create a node with a property
  2. // so we have something to update later on
  3. Node fishburn = graphDb.createNode();
  4. fishburn.setProperty( "name", "Fishburn" );
  5. // index it
  6. actors.add( fishburn, "name", fishburn.getProperty( "name" ) );
  7. // update the index entry
  8. // when the property value changes
  9. actors.remove( fishburn, "name", fishburn.getProperty( "name" ) );
  10. fishburn.setProperty( "name", "Laurence Fishburn" );
  11. actors.add( fishburn, "name", fishburn.getProperty( "name" ) );

如果,不删除旧项,则会同时存在指向fishburn的两个key-value。

    索引的查询可以使用GET方法,也可以使用QUERY方法,相对与get,query方法功能更强大一些。get方法进行精确的key-value匹配;QUERY

Relationship persephone = roles.get( "name", "Persephone" ).getSingle();
  1. for ( Node movie : movies.query( "title:*Matrix* AND year:1999" ) )
  2. {
  3. // This will return "The Matrix" from 1999 only.
  4. }

创建索引时,通过api可以制定索引的配置选项。如下所示,配置索引支持fulltext检索

  1. Index<Node> fulltextMovies = index.forNodes( "movies-fulltext",
  2. stringMap(IndexManager.PROVIDER, "lucene", "type", "fulltext") );
  1. Node node1 = graphDb.createNode();
  2. node1.setProperty("name","easypoint and abb");
  3. fulltextMovies.add( node1,"name",node1.getProperty("name"));
  4. for(Node node :fulltextMovies.query( "name", "and" )){
  5. System.out.println(node.getProperty("name"));
  6. }

总结:neo4j提供了索引机制,与关系数据库相比,需要编程人员干预的内容较多,也正是因此,其灵活性是比较强的,但无疑增加了程序人员的工作量。


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/1013657
推荐阅读
相关标签
  

闽ICP备14008679号