我的表目前是这样的:
CREATE TABLE IF NOT EXISTS `x_geodata` (
`post_id` int(11) NOT NULL,
`post_type` varchar(20) NOT NULL,
`lat` float(10,6) NOT NULL,
`lng` float(10,6) NOT NULL,
PRIMARY KEY (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
如何正确有效地索引此表?
此表上运行的唯一查询如下:
if(!empty($_SESSION['s_property_radius'])) {$dist = $_SESSION['s_property_radius'];}else{$dist = 50;}
$orig_lat = $_SESSION['s_property_address_lat'];
$orig_lon = $_SESSION['s_property_address_lng'];
$lon1 = $orig_lon - $dist / abs( cos( deg2rad( $orig_lat ) ) * 69 );
$lon2 = $orig_lon + $dist / abs( cos( deg2rad( $orig_lat ) ) * 69 );
$lat1 = $orig_lat - ( $dist / 69 );
$lat2 = $orig_lat + ( $dist / 69 );
$sql = "
SELECT `t`.`post_id`, 3956 * 2 * ASIN( SQRT( POWER( SIN( ( ".$orig_lat." - `t`.`lat` ) * pi() / 180 / 2), 2 ) + COS( ".$orig_lat." * pi() / 180) * COS( `t`.`lat` * pi() / 180 ) * POWER( SIN( ( ".$orig_lon." - `t`.`lng` ) * pi() / 180 / 2 ), 2 ) ) ) AS `distance` FROM (
SELECT `post_id`, `lat`, `lng` FROM `x_geodata` WHERE `post_type` = 'some post type' AND `lng` BETWEEN '".$lon1."' AND '".$lon2."' AND `lat` BETWEEN '".$lat1."' AND '".$lat2."'
) AS `t` HAVING `distance` <= ".$dist."
";
查询检查以确保我们正在查看正确的帖子类型,然后在lat和lng上进行方形半径检查。然后返回的结果通过圆形半径检查。
我正在寻找的是更新CREATE TABLE SQL或UPDATE TABLE SQL以正确获取此索引。
非常感谢任何帮助。
编辑: 基于arnep的答案对我的查询进行了解析,并得到了这个:
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY <derived2> ALL NULL NULL NULL NULL 3
2 DERIVED zch_geodatastore range post_type post_type 70 NULL 3 Using where
不知道它意味着什么......
答案 0 :(得分:2)
MySQL为MySQL提供了特殊的SPATIAL
密钥
请参阅:http://dev.mysql.com/tech-resources/articles/4.1/gis-with-mysql.html
引自:http://dev.mysql.com/doc/refman/5.1/en/create-index.html
MyISAM,InnoDB,NDB和ARCHIVE存储引擎支持空间列,例如(POINT和GEOMETRY。(第11.17节“空间扩展”,描述空间数据类型。)
空间键是:
•仅适用于MyISAM表。为其他存储引擎指定SPATIAL INDEX会导致错误
•索引列必须为NOT NULL
•在MySQL 5.1中,禁止列前缀长度。索引每列的全宽。
您是否知道这是针对此类问题的特殊https://gis.stackexchange.com/论坛,
我建议你(双)在那里发帖提问。
答案 1 :(得分:1)
由于你的内心SELECT
在post_type
条款中使用了lat
,lon
和WHERE
,我建议在这些条款中加上索引。
使用EXPLAIN [QUERY]
查看是否使用了索引以及从中获得了什么好处。