mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-08-19 16:28:16 +00:00

has decent performance. It is implemented as a lossy sparse array with a priority queue tracking how much of each block is used to ensure we maximize the number of nodes we fit in the given amount of memory. Also rearrange some header definitions.
15 lines
343 B
C
15 lines
343 B
C
/* Implements the mid-layer processing for osm2pgsql
|
|
* using several PostgreSQL tables
|
|
*
|
|
* This layer stores data read in from the planet.osm file
|
|
* and is then read by the backend processing code to
|
|
* emit the final geometry-enabled output formats
|
|
*/
|
|
|
|
#ifndef MIDDLE_RAM_H
|
|
#define MIDDLE_RAM_H
|
|
|
|
extern struct middle_t mid_ram;
|
|
|
|
#endif
|