Skip to content

Commit f33b689

Browse files
committed
wait paremeter example added to readme
1 parent e4829cd commit f33b689

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ $points->addPoint(
5858
$client->collections('images')->points()->upsert($points);
5959
```
6060

61+
While upsert data, if you want to wait for upsert to actually happen, you can use query paramaters:
62+
63+
```
64+
$client->collections('images')->points()->upsert($points, ['wait' => 'true']);
65+
```
66+
67+
You can check for more parameters : https://qdrant.github.io/qdrant/redoc/index.html#tag/points/operation/upsert_points
68+
6169
Search with a filter :
6270

6371
```php

0 commit comments

Comments
 (0)