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
Copy file name to clipboardExpand all lines: README.md
+59Lines changed: 59 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -326,6 +326,28 @@ pg0 logs --name myapp
326
326
327
327
Logs are stored in `~/.pg0/instances/<name>/data/log/`.
328
328
329
+
### Installing Extensions
330
+
331
+
#### pg_textsearch (BM25 full-text search)
332
+
333
+
[pg_textsearch](https://github.com/timescale/pg_textsearch) adds BM25-ranked full-text search to PostgreSQL. Install it into your pg0 instance with a single command (requires Xcode Command Line Tools on macOS, or `build-essential` on Linux):
pg0 psql -c "CREATE EXTENSION IF NOT EXISTS pg_textsearch;"
349
+
```
350
+
329
351
### Using pgvector
330
352
331
353
pgvector is pre-installed. Just enable it:
@@ -502,6 +524,43 @@ cargo build --release
502
524
503
525
The binary will be at `target/release/pg0`.
504
526
527
+
## Changelog
528
+
529
+
### 0.12.2
530
+
- Fix reproducible builds by committing `Cargo.lock` ([`28c51ec`](https://github.com/vectorize-io/pg0/commit/28c51ec))
531
+
532
+
### 0.12.1
533
+
- Fix data loss on restart after unclean shutdown ([#6](https://github.com/vectorize-io/pg0/issues/6), [`21e0f08`](https://github.com/vectorize-io/pg0/commit/21e0f08))
534
+
535
+
### 0.12.0
536
+
- Intel Mac (x86_64) support ([#5](https://github.com/vectorize-io/pg0/pull/5))
0 commit comments