osama yaccoub
osama yaccoub

Reputation: 1866

What types of indexing does Neo4j use for schema index?

I am new to Neo4j when I came across Neo4j indexes, all what I found is that there's a legacy index and another new one (the schema index), but I want to know what are the types of these indexes and if there's a way to specify it ? i.e in oracle we have clustered/non-clustered/b-tree/bitmap ...etc , do we have something similar in Neo4j?

Upvotes: 1

Views: 304

Answers (1)

logisima
logisima

Reputation: 7458

In Neo4j there is two kinds of index :

  • Schema indexes (via create index or create constraint)
  • Legacy indexes

All those indexes are internally made with Lucene, and there is no type of indexe, like in oracle.

When you use legacy indexes, you can configure them like it's describe here : http://neo4j.com/docs/stable/indexing-create-advanced.html

You can find some additional informations here :

Cheers

Upvotes: 1

Related Questions