You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For deploying PGVector implemented in C, you can use Docker. Below is an example docker-compose.yaml configuration:
326
+
For deploying Postgres with [pgvector](https://github.com/pgvector/pgvector) (a Postgres plugin written in C), you can use Docker. Below is an example `docker-compose.yaml` configuration:
323
327
324
328
```yaml
325
329
version: '3'
@@ -335,7 +339,7 @@ services:
335
339
- "5432:5432"
336
340
```
337
341
338
-
Similarly, for PGVector written in Rust, Docker can also be utilized. Here's a corresponding docker-compose.yaml example:
342
+
Similarly, for Postgres with [pgvecto.rs](https://github.com/tensorchord/pgvecto.rs) (a Postgres plugin written in Rust), Docker can also be utilized. Here's a corresponding `docker-compose.yaml` example:
339
343
340
344
```yaml
341
345
version: '3'
@@ -353,16 +357,20 @@ services:
353
357
354
358
### Step 2. Modify the configuration
355
359
356
-
We have provided four configuration files for testing PGVector:
357
-
for PGVector written in C:
360
+
We have provided four configuration files for testing.
0 commit comments