Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update full-text index #1511

Merged
merged 1 commit into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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