cypher - Neo4j Auto indexing issues -


i have tried auto indexing , have set neo4j.properties file following:

# autoindexing  # enable auto-indexing nodes, default false #node_auto_indexing=true  # node property keys auto-indexed, if enabled #node_keys_indexable=name,type,currentversion,datetimecreated,currentversiondatetime,versioncount,  customername,documentreference,version 

before had set node_auto_indexing=true false , created own index testing want auto index node properties?

and when run cypher query returns 0 rows?

start n = node:node_auto_index(name = "mike") return n; 

what doing wrong here?

did create nodes when node_auto_indexing false? if so, these existing nodes won't "automatically" indexed when set property true. have manually add them auto index ( http://docs.neo4j.org/chunked/milestone/auto-indexing.html)

note new nodes created node_auto_indexing=true indexed without manual intervention.


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -