Skip to content

Commit 0caf4c5

Browse files
Replace page-version with current in links
1 parent dd72fcf commit 0caf4c5

14 files changed

+24
-24
lines changed

modules/ROOT/pages/extending-neo4j/best-practices.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
= Best practices
66

77
It is important to consider any security implications of deploying customized code.
8-
Refer to the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/security/securing-extensions[Operations Manual -> Securing Extensions] for details on best practices for securing user-defined procedures and functions.
8+
Refer to the link:{neo4j-docs-base-uri}/operations-manual/current/security/securing-extensions[Operations Manual -> Securing Extensions] for details on best practices for securing user-defined procedures and functions.
99

1010
Since you will be running custom-built code and Neo4j in the same JVM, there are a few things you should keep in mind:
1111

modules/ROOT/pages/extending-neo4j/customized-code.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Examples of use cases for procedures and functions are:
1616

1717
Procedures and functions are written in Java and compiled into JAR files.
1818
They are deployed to the database by dropping that JAR file into the _plugins_ directory on each standalone or clustered server.
19-
For the location of the _plugins_ directory, refer to link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/file-locations[Operations Manual -> Default file locations].
19+
For the location of the _plugins_ directory, refer to link:{neo4j-docs-base-uri}/operations-manual/current/configuration/file-locations[Operations Manual -> Default file locations].
2020
The database must be restarted on each server to pick up new procedures and functions.
2121

2222
Procedures and functions can take arguments and return results.
@@ -53,9 +53,9 @@ In addition, procedures can perform write operations on the database.
5353

5454
Neo4j also comes bundled with a number of _built-in_ procedures and functions.
5555

56-
The available built-in procedures vary depending on edition and mode, as described in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures].
56+
The available built-in procedures vary depending on edition and mode, as described in link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures[Operations Manual -> Procedures].
5757
Running `SHOW PROCEDURES` displays the full list of procedures available in your Neo4j DBMS, including user-defined procedures.
5858

59-
The built-in functions are described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/functions[Cypher Manual -> Functions].
59+
The built-in functions are described in link:{neo4j-docs-base-uri}/cypher-manual/current/functions[Cypher Manual -> Functions].
6060
Running `SHOW FUNCTIONS` displays the full list of all the functions available in your Neo4j DBMS, including user-defined functions.
6161

modules/ROOT/pages/extending-neo4j/procedures.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CALL org.neo4j.examples.findDenseNodes(1000)
2828

2929
`CALL` may be the only clause within a Cypher statement or may be combined with other clauses.
3030
Arguments can be supplied directly within the query or taken from the associated parameter set.
31-
For full details, see the documentation in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/clauses/call[Cypher Manual -> `CALL` procedure].
31+
For full details, see the documentation in link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/call[Cypher Manual -> `CALL` procedure].
3232

3333

3434
[[user-defined-procedures]]
@@ -195,7 +195,7 @@ The classes that can be injected are:
195195
All of the above classes are considered safe and future-proof and do not compromise the security of the database.
196196
Several unsupported (restricted) classes can also be injected and can be changed with little or no notice.
197197
Procedures written to use these restricted APIs are not loaded by default, and you need to use the `dbms.security.procedures.unrestricted` to load unsafe procedures.
198-
Read more about this config setting in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/security/securing-extensions[Operations Manual -> Securing extensions].
198+
Read more about this config setting in link:{neo4j-docs-base-uri}/operations-manual/current/security/securing-extensions[Operations Manual -> Securing extensions].
199199

200200
[[memory-resource-tracking]]
201201
== Memory Resource Tracking
@@ -206,7 +206,7 @@ The memory resource tracking API for the procedure framework is available for pr
206206
Future versions of Neo4j might contain breaking changes to this API.
207207
====
208208

209-
If your procedure or function allocates significant amounts of heap memory, you can register allocations to count towards the configured transaction limits, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/performance/memory-configuration/#memory-configuration-limit-transaction-memory[Operations Manual -> Limit transaction memory usage] for more information.
209+
If your procedure or function allocates significant amounts of heap memory, you can register allocations to count towards the configured transaction limits, see link:{neo4j-docs-base-uri}/operations-manual/current/performance/memory-configuration/#memory-configuration-limit-transaction-memory[Operations Manual -> Limit transaction memory usage] for more information.
210210
This allows you to avoid `OutOfMemory` errors that cause database restarts.
211211
Memory allocations also show up in query profiles.
212212

modules/ROOT/pages/extending-neo4j/security-plugins.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Neo4j provides authentication and authorization plugin interfaces to support rea
99

1010
The SPI (Service Provider Interface) lives in the `com.neo4j.server.security.enterprise.auth.plugin.spi` package.
1111

12-
Customized-built plugins have access to the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/file-locations[_<neo4j-home>_] directory in case you want to load any customized settings from a file located there.
12+
Customized-built plugins have access to the link:{neo4j-docs-base-uri}/operations-manual/current/configuration/file-locations[_<neo4j-home>_] directory in case you want to load any customized settings from a file located there.
1313
Plugins can also write to the security event log.
1414

1515

modules/ROOT/pages/extending-neo4j/unmanaged-extensions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ When writing unmanaged extensions, you have greater control over the amount of m
102102
If you keep too much state around, it can lead to more frequent full Garbage Collection and subsequent unresponsiveness by the Neo4j server.
103103

104104
A common way that state can increase, is the creation of JSON objects to represent the result of a query, which is then sent back to your application.
105-
Neo4j's Transactional Cypher HTTP endpoint (see link:{neo4j-docs-base-uri}/http-api/{page-version}/actions[HTTP API Docs -> transactional Cypher endpoint]) streams responses back to the client.
105+
Neo4j's Transactional Cypher HTTP endpoint (see link:{neo4j-docs-base-uri}/http-api/current/actions[HTTP API Docs -> transactional Cypher endpoint]) streams responses back to the client.
106106
For example, the following unmanaged extension streams an array of a person's colleagues:
107107

108108
//https://github.com/neo4j/neo4j-documentation/blob/dev/server-examples/src/main/java/org/neo4j/examples/server/unmanaged/ColleaguesResource.java

modules/ROOT/pages/extending-neo4j/values-and-types.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[[extending-neo4j-procedures-and-functions-values-and-types]]
77
= Values and types
88

9-
The _input_ and _output_ to and from a procedure or a function must be one of the supported types, as described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/values-and-types/[Cypher Manual -> Values and types].
9+
The _input_ and _output_ to and from a procedure or a function must be one of the supported types, as described in link:{neo4j-docs-base-uri}/cypher-manual/current/values-and-types/[Cypher Manual -> Values and types].
1010

1111
Composite types are supported via:
1212

modules/ROOT/pages/java-embedded/cypher-java.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[[cypher-java]]
55
= Cypher queries
66

7-
In Java, you can use the link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Cypher query language] as per the example below.
7+
In Java, you can use the link:{neo4j-docs-base-uri}/cypher-manual/current/[Cypher query language] as per the example below.
88

99
[TIP]
1010
====
@@ -118,5 +118,5 @@ You should instead use only one and if you need the facilities of the other meth
118118

119119
For more information on the Java interface to Cypher, see the link:{neo4j-javadocs-base-uri}/index.html[Neo4j Javadocs^].
120120

121-
For more information and examples for Cypher, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Neo4j Cypher Manual].
121+
For more information and examples for Cypher, see link:{neo4j-docs-base-uri}/cypher-manual/current/[Neo4j Cypher Manual].
122122

modules/ROOT/pages/java-embedded/indexes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
[[java-embedded-new-index]]
55
= Using indexes
66

7-
It is possible to create and use all the index types described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/indexes-for-search-performance[Cypher Manual -> Indexes].
7+
It is possible to create and use all the index types described in link:{neo4j-docs-base-uri}/cypher-manual/current/indexes-for-search-performance[Cypher Manual -> Indexes].
88

99
This section demonstrates how to work with indexes with an example of a user database.
10-
For information about how to create an index on all `User` nodes that have a `username` property, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/indexes-for-search-performance#administration-indexes-create-a-single-property-index-for-nodes[Cypher Manual -> Create a single-property index for nodes].
10+
For information about how to create an index on all `User` nodes that have a `username` property, see link:{neo4j-docs-base-uri}/cypher-manual/current/indexes-for-search-performance#administration-indexes-create-a-single-property-index-for-nodes[Cypher Manual -> Create a single-property index for nodes].
1111

1212
[TIP]
1313
====

modules/ROOT/pages/java-embedded/property-values.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ If these objects are returned from procedures, the original types cannot be recr
5454
[NOTE]
5555
====
5656
Strings that contain special characters can have inconsistent or non-deterministic ordering in Neo4j.
57-
For details, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/syntax/values#property-types-sip-note[Cypher Manual -> Sorting of special characters].
57+
For details, see link:{neo4j-docs-base-uri}/cypher-manual/current/syntax/values#property-types-sip-note[Cypher Manual -> Sorting of special characters].
5858
====
5959

modules/ROOT/pages/java-embedded/query-parameters.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
The following examples illustrate how to use parameters when executing Cypher queries from Java.
88

9-
For more information on parameters, see the link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Neo4j Cypher Manual].
9+
For more information on parameters, see the link:{neo4j-docs-base-uri}/cypher-manual/current/[Neo4j Cypher Manual].
1010

1111

1212
//https://github.com/neo4j/neo4j-documentation/blob/dev/cypher/cypher-docs/src/test/java/org/neo4j/cypher/example/JavaExecutionEngineDocTest.java

0 commit comments

Comments
 (0)