Re: Simple query, 10 million records...MySQL ten times faster

Поиск
Список
Период
Сортировка
От Jeff Hoffmann
Тема Re: Simple query, 10 million records...MySQL ten times faster
Дата
Msg-id 46311C41.4000906@propertykey.com
обсуждение исходный текст
Ответ на Simple query, 10 million records...MySQL ten times faster  (zardozrocks <zardozrocks@gmail.com>)
Список pgsql-performance
zardozrocks wrote:
> I have this table:
>
> CREATE TABLE test_zip_assoc (
>     id serial NOT NULL,
>     f_id integer DEFAULT 0 NOT NULL,
>     lat_radians numeric(6,5) DEFAULT 0.00000 NOT NULL,
>     long_radians numeric(6,5) DEFAULT 0.00000 NOT NULL
> );
> CREATE INDEX lat_radians ON test_zip_assoc USING btree (lat_radians);
> CREATE INDEX long_radians ON test_zip_assoc USING btree
> (long_radians);

Maybe I'm missing something, but wouldn't it be easier to just use
PostGIS?  Or failing that, using the vanilla built-in point type and an
r-tree index?  That's what r-tree indexes are made for.

--
Jeff Hoffmann
Head Plate Spinner
PropertyKey.com

В списке pgsql-performance по дате отправления:

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: Simple query, 10 million records...MySQL ten times faster
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: postgres: 100% CPU utilization