[OSM-Devserver] Datenbankgröße

Tobias Wendorff tobias.wendorff at uni-dortmund.de
Mo Mai 10 12:33:33 CEST 2010


Hallo Peter,

ich habe das auch mal eben durchlaufen lassen, zum Vergleich:

Peter Körner schrieb:
>   import times:
> combined:  2m20.210s
> hstore:    2m4.508s
> classic:   2m3.805s
> hstore-ex: 2m8.532s

   import times:
combined:  1m16.581s
hstore:    1m13.585s
classic:   1m16.422s
hstore-ex: 1m24.317s

>   database sizes:
> combined:  268 MB
> hstore:    876 MB
> classic:   246 MB
> hstore-ex: 614 MB

   database sizes:
combined:  271 MB
hstore:    877 MB
classic:   249 MB
hstoreex:  611 MB

Ist also fast identisch ... counten muss ich dann nicht mehr.

Okay, Amenity-Tags zählen mit:
SELECT count(osm_id) FROM hstore_point WHERE exist(tags, 'amenity');
SELECT count(osm_id) FROM classic_point WHERE amenity != '';
combined: 12982
hstore:   12982
classic:  12982
hstoreex: 12982

Relationen in line zählen (ID kleiner Null):
combined: 3010
hstore:   3010
classic:  3010
hstoreex: 3010

SELECT count(*) FROM (SELECT (each(tags)).key FROM hstore_point) AS sq;
combined: 167385
hstore:   167385
classic:  -
hstoreex: 3080147

Ich komme also auf ähnliche Ergebnisse wie Du, die Du gerade
gepostet hast.

Grüße
Tobias