MySQL Forums
Forum List  »  GIS

proposed solution:
Posted by: Gregor Melhorn
Date: October 21, 2004 09:28AM

My present solution looks like this:

There are four classes of distance:

0-50 km, 50-100 km, 100-150 km, 150 - 250 km.

For each class I create a table with three columns: "zip_seek", "zip_target" and "distance".

Tables have a multi-column index on "zip_seek" and "distance".

A second index on "zip_target" exists, for faster joins.

In "zip_seek" I put the zip I'm searching for. Then I generate a record for every other zip belonging to this class (e.g. that is up to 50 km away to "zip_seek"). This zip is put in "zip_target". Distance in km is put in "distance", calculated from the geodata I have.

Then I physically sort the table based on my multi-column index (theres a mysql command for this, somewhere in the manual).

So I'm able to do very fast selects on these tables: It needs only around 5 or 6 seeks to find the matching position where to read out the rows, further sorting is unnecessary since distance is the second key part of my index and therefore all rows are already sorted. Compare this to reading out and sorting 20 000 rows on every query!

I'f I'm right index size should be around 50 - 100 MB, database size also a few hundred MB, so it's possible to put all that stuff in ram.

I didn't try this yet nor did I do serious calculations, but I'll post some benchmark results here soon.

Options: ReplyQuote


Subject
Views
Written By
Posted
28068
October 19, 2004 06:04AM
10844
October 19, 2004 07:55AM
9248
October 19, 2004 11:14AM
proposed solution:
10283
October 21, 2004 09:28AM
9175
October 19, 2004 06:59PM
7622
October 20, 2004 07:39AM
7637
October 21, 2004 09:10AM
8834
October 22, 2004 07:17AM
6779
October 23, 2004 02:48AM
6231
October 23, 2004 03:09AM
6327
October 23, 2004 03:12AM
6215
October 23, 2004 02:59PM
7995
October 24, 2004 12:34PM
5524
October 24, 2004 01:31PM
13123
October 21, 2005 10:21AM
5575
D C
January 28, 2006 05:24AM
5123
March 02, 2006 04:24PM
7216
October 09, 2007 09:28AM
5743
December 06, 2005 05:34AM
7013
December 06, 2005 06:36AM
5317
December 24, 2005 01:10PM
8836
December 26, 2005 03:49PM
5442
October 09, 2007 09:36AM
29341
December 13, 2007 04:10PM
6186
April 05, 2006 02:59PM
4709
May 02, 2006 03:22PM
5670
May 05, 2006 09:44AM
14515
June 25, 2006 09:32PM
5500
August 30, 2006 12:54PM
5982
July 14, 2007 01:09AM
7637
November 03, 2006 10:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.