We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f1ea04 commit 9b6e52eCopy full SHA for 9b6e52e
1 file changed
src/options.hpp
@@ -151,11 +151,11 @@ class options_t
151
152
/**
153
* How many bits should the node id be shifted for the way node index?
154
- * Use 0 to disable for backwards compatibility.
155
- * Currently the default is 0, making osm2pgsql backwards compatible to
156
- * earlier versions.
+ * The result is a lossy index which is significantly smaller.
+ * See https://osm2pgsql.org/doc/manual.html#bucket-index-for-slim-mode
+ * Use 0 to use a classic loss-less GIN index.
157
*/
158
- uint8_t way_node_index_id_shift = 0;
+ uint8_t way_node_index_id_shift = 5;
159
160
/// add an additional hstore column with objects key/value pairs, and what type of hstore column
161
hstore_column hstore_mode = hstore_column::none;
0 commit comments