What is a SPATIAL INDEX and when should I use it?

前端 未结 4 1495
感动是毒
感动是毒 2021-02-01 12:56

Like most of the average PHP web developers I use MySql as a RDBMS. MySql (as other RDBMS also) offers SPATIAL INDEX features, but I\'m don\'t get it very well. I have googled f

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-01 13:13

    Spatial Index is like an ordinary index with this difference that Spatial objects are not 1D data points rather are in higher dimension space (e.g. 2D) and thus Ordinary indexes such as BTree are not appropriate for indexing such data. The well-known spatial Index technique is R-tree ( Google it on wikipedia )

提交回复
热议问题