Results 114 issues of Jochen Topf

All the sample code contains the same lines with magic numbers: ``` ExecutionBuffer codeAllocator(8192); Allocator allocator(8192); FunctionBuffer code(codeAllocator, 8192); ``` I have been running into cases with more complex expressions...

`make install` installs `gtest` and `gmock` libs and includes, which should probably not be installed, but it doesn't install `NativeJIT` and `CodeGen` libs and includes.

We use [fmt](https://fmt.dev/) for formatting strings. Currently version 8.0.1 is vendored in. Newer versions 8.1.0 and 9.0.0 are available, but the syntax `""_format(...)` is deprecated in 8.1 and removed in...

osm2pgsql currently compiles with C++11 or newer standards. For some libraries it might be better to compile in C++14 mode (or even newer) if it is available. This is the...

The `--extra-attributes`/`-x` option does two things. It adds OSM attributes such as version, timestamp, uid, ... to the OSM objects processed in osm2pgsql. And it also changes the behaviour of...

At the core of osm2pgsqls mission is the processing of geometries from OSM data into some useful format in a PostgreSQL/PostGIS database. Osm2pgsql is one step in a larger toolchain...

flex
big picture

This issues collects some thoughts about tile expiry and how it can be improved. Details can be discussed in additional issues, this should only collect the broader design issues. ##...

big picture

The default value for the `--cache/-C` parameter is currently 800 which is rather small for current hardware and typical use. * Do we want a larger default value? * Do...

This PR adds two new middle implementations: - `db` is similar to `pgsql`. All data is stored in the database. A new table structure with JSONB for tags and relation...