Skip to content

Commit

Permalink
update full-text index (#1511)
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy authored Mar 1, 2022
1 parent 35d5d91 commit 34785c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ LOOKUP ON {<tag> | <edge_type>} WHERE <expression> [YIELD <return_list>];
nebula> CREATE SPACE IF NOT EXISTS basketballplayer (partition_num=3,replica_factor=1, vid_type=fixed_string(30));
//登录文本搜索客户端。
nebula> SIGN IN TEXT SERVICE (127.0.0.1:9200);
nebula> SIGN IN TEXT SERVICE (127.0.0.1:9200, HTTP);
//切换图空间。
nebula> USE basketballplayer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ curl -H "Content-Type: application/json; charset=utf-8" -XPUT http://127.0.0.1:9
### 语法

```ngql
SIGN IN TEXT SERVICE [(<elastic_ip:port> [,"<username>", "<password>"]), (<elastic_ip:port>), ...];
SIGN IN TEXT SERVICE (<elastic_ip:port>, {HTTP | HTTPS} [,"<username>", "<password>"]) [, (<elastic_ip:port>, ...)];
```

### 示例

```ngql
nebula> SIGN IN TEXT SERVICE (127.0.0.1:9200);
nebula> SIGN IN TEXT SERVICE (127.0.0.1:9200, HTTP);
```

!!! Note
Expand Down

0 comments on commit 34785c0

Please sign in to comment.