图引擎服务 GES-批量新建索引:请求参数
请求参数
参数 |
是否必选 |
类型 |
说明 |
indices |
是 |
Array |
索引数组。新建索引数不可超过最大支持索引数减去已存在索引数。当前最多支持新建10个索引。索引参数详情参见表3 indices参数说明。 |
参数 |
是否必选 |
类型 |
说明 |
---|---|---|---|
indexName |
是 |
String |
索引名称。只能包含字母,数字,-和_。不能包含其他字符。索引名称的长度需在63字符以内。 |
indexType |
是 |
String |
索引的类型,区分大小写。
|
hasLabel |
否 |
Boolean |
是否有label,默认为false。
|
indexLabel |
否 |
List |
Label列表,仅在indexType为CompositeVertexIndex或CompositeEdgeIndex时有效且必填。用以指定在哪些label上建立索引。 |
indexProperty |
否(若hasLabel为false或null,则该项为必选) |
String |
索引的属性列表。 可以创建索引的属性类型有: integer、 float、 double、 long、 enum、 string、 date。 |
- 如果属性类型为string,属性长度建议不要超过40个字节,超出的部分会被截断。
- Cypher查询可以借助hasLabel为True的索引来加速。
- indexProperty为空时,建立的索引为label索引,可以加速label过滤。
- indexProperty不为空时,建立的索引为属性索引,可以加速对应的属性过滤。