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: CHANGELOG.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
# UNRELEASED
2
2
- Changes from 5.16.0:
3
3
- Bugfixes: fix deduplication of route steps when waypoints are used [#4909](https://github.com/Project-OSRM/osrm-backend/issues/4909)
4
+
- Tools:
5
+
-`osrm-routed` accepts a new property `--memory_file` to store memory in a file on disk.
6
+
- NodeJS:
7
+
-`OSRM` object accepts a new option `memory_file` that stores the memory in a file on disk.
8
+
4
9
5
10
# 5.16.0
6
11
- Changes from 5.15.2:
@@ -17,7 +22,6 @@
17
22
- ADDED #4775: Exposes more information to the turn function, now being able to set turn weights with highway and access information of the turn as well as other roads at the intersection [#4775](https://github.com/Project-OSRM/osrm-backend/issues/4775)
18
23
- FIXED #4763: Add support for non-numerical units in car profile for maxheight [#4763](https://github.com/Project-OSRM/osrm-backend/issues/4763)
19
24
- ADDED #4872: Handling of `barrier=height_restrictor` nodes [#4872](https://github.com/Project-OSRM/osrm-backend/pull/4872)
Copy file name to clipboardexpand all lines: docs/nodejs/api.md
+1
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ var osrm = new OSRM('network.osrm');
25
25
Make sure you prepared the dataset with the correct toolchain.
26
26
-`options.shared_memory`**[Boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?** Connects to the persistent shared memory datastore.
27
27
This requires you to run `osrm-datastore` prior to creating an `OSRM` object.
28
+
-`options.memory_file`**[String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)?** Path to a file on disk to store the memory using mmap.
28
29
-`options.path`**[String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)?** The path to the `.osrm` files. This is mutually exclusive with setting {options.shared_memory} to true.
29
30
-`options.max_locations_trip`**[Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Max. locations supported in trip query (default: unlimited).
30
31
-`options.max_locations_viaroute`**[Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Max. locations supported in viaroute query (default: unlimited).
0 commit comments