File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- ## Using the driver in GraalVM native images
1
+ ## GraalVM native images
2
2
3
3
### Quick overview
4
4
5
- * [ GraalVM Native images] ( https://www.graalvm.org/reference-manual/native-image/ ) using the driver
6
- can be built with no additional configuration starting with driver 4.13.0.
5
+ * [ GraalVM native images] ( https://www.graalvm.org/reference-manual/native-image/ ) can be built with
6
+ no additional configuration starting with driver 4.13.0.
7
7
* But extra configurations are required in a few cases:
8
8
* When using [ reactive programming] ( ../reactive ) ;
9
9
* When using [ Jackson] ( ../integration#Jackson ) ;
@@ -132,7 +132,7 @@ following configurations must be added:
132
132
133
133
### Using the Jackson JSON library
134
134
135
- [ Jackson] ( https://github.com/FasterXML/jackson ) is used in [ a few places] ( ../integration#Jackson ) in
135
+ [ Jackson] ( https://github.com/FasterXML/jackson ) is used in [ a few places] ( ../integration#jackson ) in
136
136
the driver, but is an optional dependency; if you intend to use Jackson, the following
137
137
configurations must be added:
138
138
@@ -223,7 +223,7 @@ configuration is required:
223
223
224
224
### Native calls
225
225
226
- The driver performs a few [ native calls] ( ../integration#Native -libraries ) using
226
+ The driver performs a few [ native calls] ( ../integration#native -libraries ) using
227
227
[ JNR] ( https://github.com/jnr ) .
228
228
229
229
Starting with driver 4.7.0, native calls are also possible in a GraalVM native image, without any
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ primitives such as atomic variables and CAS (compare-and-swap) instructions.
29
29
30
30
A further distinction is generally established between "lock-free" and "wait-free" algorithms: the
31
31
former ones allow progress of the overall system, while the latter ones allow each thread to make
32
- progress at any time. This distinction is however rather theoretical and is outside of the scope of
32
+ progress at any time. This distinction is however rather theoretical and is outside the scope of
33
33
this document.
34
34
35
35
[ lock-free ] : https://www.baeldung.com/lock-free-programming
You can’t perform that action at this time.
0 commit comments