MySQL Variables max_points_in_geometry 数据库 参数变量解释及正确配置使用
本站中文解释
.
max_points_in_geometry参数指定了MySQL数据库存储空间数据类型Geometry的最大允许多边形顶点数。
设置这个参数的目的旨在限制单个空间几何数据占用的空间,防止因顶点数量太多导致服务器性能下降。
默认值为65536,在MySQL 5.7.8版本中,你可以使用SET GLOBAL max_points_in_geometry句子来设置服务器级别的max_points_in_geometry变量,也可以使用SET SESSION max_points_in_geometry 句子来改变会话级别的max_points_in_geometry变量,如:
SET GLOBAL max_points_in_geometry=80000; — 修订全局变量
SET SESSION max_points_in_geometry=80000; — 修改会话变量。
官方英文解释
max_points_in_geometry
Command-Line Format | --max-points-in-geometry=# |
---|---|
System Variable | max_points_in_geometry |
Scope | Global, Session |
Dynamic | Yes |
Type | Integer |
Default Value | 65536 |
Minimum Value | 3 |
Maximum Value | 1048576 |
The maximum value of the
points_per_circle
argument to the
ST_Buffer_Strategy()
function.