Skip to content

Commit 0d81554

Browse files
clarify ee and ce
1 parent 8dc7387 commit 0d81554

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

modules/ROOT/pages/introduction/cypher-neo4j.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ xref::constraints/managing-constraints.adoc#create-key-constraints[node and rela
3939
a|
4040
Only xref::constraints/managing-constraints.adoc#create-property-uniqueness-constraints[node and relationship property uniqueness constraints].
4141

42+
| Runtimes
43+
a|
44+
All runtimes:
45+
xref::planning-and-tuning/runtimes/concepts.adoc#runtimes-slotted-runtime[slotted runtime], xref::planning-and-tuning/runtimes/concepts.adoc#runtimes-pipelined-runtime[pipelined runtime] (default), xref::planning-and-tuning/runtimes/concepts.adoc#runtimes-parallel-runtime[parallel runtime].
46+
47+
a|
48+
Only xref::planning-and-tuning/runtimes/concepts.adoc#runtimes-slotted-runtime[slotted runtime].
49+
4250
|===
4351

4452
[[neo4j-terminology]]

modules/ROOT/pages/planning-and-tuning/runtimes/concepts.adoc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,12 @@ This is because the process of individual rows being pulled from different opera
141141
== Pipelined runtime
142142

143143
The pipelined runtime is the default runtime for Neo4j Enterprise Edition.
144-
This means that unless users of Neo4j Enterprise Edition specify a different runtime, queries will be run using the pipelined runtime.
145-
146-
To specify that a query should use the pipelined runtime, prepend the query with `CYPHER runtime = pipelined`.
147-
For example:
144+
This means that unless users of Neo4j Enterprise Edition specify a different runtime, queries will be run using the pipelined runtime (to explicitly specify that a query should use the pipelined runtime, prepend the query with `CYPHER runtime = pipelined`).
148145

149146
.Query
150147
[source, cypher]
151148
----
152149
EXPLAIN
153-
CYPHER runtime = pipelined
154150
MATCH (:Station { name: 'Denmark Hill' })<-[:CALLS_AT]-(d:Stop)
155151
((:Stop)-[:NEXT]->(:Stop))+
156152
(a:Stop)-[:CALLS_AT]->(:Station { name: 'Clapham Junction' })

0 commit comments

Comments
 (0)