Files
osm2pgsql/middle-ram.h
Martijn van Oosterhout 4bece011c2 Add a caching level to the slim-mode with configurable size, so it actually
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.
2008-04-12 17:05:11 +00:00

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