You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,16 @@ MERGE (a {foo:1})-[:T]->(b {foo:a.foo})
109
109
a|
110
110
It is no longer possible to specify a property of one entity (node or relationship) by referring to another entity’s property within the same `MERGE` clause.
111
111
112
+
a|
113
+
label:functionality[]
114
+
label:removed[]
115
+
[source, cypher, role="noheader"]
116
+
----
117
+
CREATE ... INDEX ... OPTIONS { indexProvider: ... }
Copy file name to clipboardExpand all lines: modules/ROOT/pages/indexes/search-performance-indexes/managing-indexes.adoc
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,7 +214,9 @@ Instad an informational notification is returned.
214
214
Creating a text index can be done with the `CREATE TEXT INDEX` command.
215
215
Note that the index name must be unique.
216
216
217
-
Text indexes have no supported index configuration and they have two index providers available, `text-2.0` (default -- see xref:indexes/search-performance-indexes/managing-indexes.adoc#text-indexes-trigram-indexes[Trigram indexing] below for more information) and `text-1.0` (deprecated).
217
+
Text indexes have no supported index configuration.
218
+
219
+
See xref:indexes/search-performance-indexes/managing-indexes.adoc#text-indexes-trigram-indexes[Trigram indexing] for information about how text indexes process `STRING` values.
218
220
219
221
[[text-indexes-supported-predicates]]
220
222
[discrete]
@@ -287,7 +289,7 @@ Text indexes are only used for exact query matches. To perform approximate match
287
289
[[text-indexes-trigram-indexes]]
288
290
==== Trigram indexing
289
291
290
-
The default text index provider, `text-2.0`, uses trigram indexing.
292
+
Text indexes uses trigram indexing.
291
293
This means that `STRING` values are indexed into overlapping trigrams, each containing three Unicode code points.
292
294
For example, the word `"developer"` would be indexed by the following trigrams: `["dev", "eve", "vel", "elo", "lop", "ope", "per"]`.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,8 +68,6 @@ A vector index allows you to retrieve a neighborhood of nodes or relationships b
68
68
69
69
A vector index is a single-label, single-property index for nodes or a single-relationship-type, single-property index for relationships.
70
70
It can be used to index nodes or relationships by `LIST<INTEGER | FLOAT>` properties valid to the dimensions and vector similarity function of the index.
71
-
Note that the available vector index providers (`vector-2.0` (default) and `vector-1.0` (deprecated)) support different index schemas, property value types, and vector dimensions.
72
-
For more information, see xref:indexes/semantic-indexes/vector-indexes.adoc#vector-index-providers[].
73
71
74
72
A vector index is created by using the `CREATE VECTOR INDEX [index_name]` command.
75
73
It is recommended to give the index a name when it is created.
@@ -347,10 +345,8 @@ DROP INDEX moviePlots
347
345
[[vector-index-providers]]
348
346
== Vector index providers for compatibility
349
347
350
-
As of Neo4j 5.18, the default index provider is `vector-2.0`.
351
-
As of Neo4j 5.26, it is no longer possible to specify an index provider when creating indexes.
352
-
Instead, Neo4j selects the most performant provider (currently `vector-2.0`).
353
-
348
+
It is not possible to specify an index provider when creating indexes in Cypher 25.
349
+
Instead, Neo4j selects the most performant provider (currently `vector-2.0` for vector indexes).
354
350
Previously created `vector-1.0` indexes will continue to function.
355
351
356
352
.Learn more about vector index provider differences
@@ -381,6 +377,10 @@ Single-type, single-property index for relationships.
0 commit comments