Ticket #1131 (closed defect: fixed)
Make geocoder faster
| Reported by: | robe | Owned by: | robe |
|---|---|---|---|
| Priority: | high | Milestone: | PostGIS 2.0.0 |
| Component: | tiger geocoder | Version: | 1.5.X |
| Keywords: | Cc: |
Description
I'm working on making the geocoder faster.
I have the reverse_geocoder pretty fast (used to take a second or 2 for each, but now have that down to 20-40 ms)
mostly by correcting the edges tlid (which was numeric making bigint like the others) and getting rid of use of addr.
However this somehow screwed up the speed of the regular geocoder at least on my windows db. I'm almost done reworking. I've decided to get rid of the use of addr altogether and the speed seems much better but I have to fix some regress failures resulting mostly from my mistyping of left and right.
The data in addr is in most cases (if not all for roads) redundant with what is already in edges. I think in 2008 the lfrom/toadd fields in edges were blank which I think was the main reason why addr was used. In 2010 they are filled in.
If we have more than 2 addr records per tlid the interpolate would be screwed up anyway the way its computed right now.

