[postgis-users] Crash when creating index on ( int, geom )
Markus Schaber
schabios at logi-track.com
Fri Jan 21 08:42:16 PST 2005
Hi, Robin,
Robin Chauhan schrieb:
> The effect I want is that the performance of spatial queries for items
> (which are points) in one pool, are not affected much by the how many
> items there are in other pools.
How many pools do you have?
If you have a relatively small, fixed number of Pools you could try
conditional indices, like:
CREATE INDEX mytable_pool1_idx USING GIST ON mytable(geom
GIST_GEOMETRY_OPS) WHERE pool=1;
CREATE INDEX mytable_pool2_idx USING GIST ON mytable(geom
GIST_GEOMETRY_OPS) WHERE pool=2;
The query optimizer should get it when your query includes a "pool=2" or
so in the WHERE clause.
This may be an equal solution for your problem (but nevertheless, you
should try to debug the reasons for your crash).
HTH,
Markus
--
markus schaber | dipl. informatiker
logi-track ag | rennweg 14-16 | ch 8001 zürich
phone +41-43-888 62 52 | fax +41-43-888 62 53
mailto:schabios at logi-track.com | www.logi-track.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 256 bytes
Desc: OpenPGP digital signature
URL: <http://lists.osgeo.org/pipermail/postgis-users/attachments/20050121/729ea348/attachment.pgp>
More information about the postgis-users
mailing list