Skip to content

Commit f575891

Browse files
committed
cleanup
1 parent 2c126fb commit f575891

2 files changed

Lines changed: 12 additions & 43 deletions

File tree

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Timescale Vector
22

3-
Say something chat gpt.
3+
A vector index for speeding up ANN search in `pgvector`.
44

55
🔧 Tools Setup
6-
Building the extension requires valid rust (we build and test on 1.65), rustfmt, and clang installs, along with the postgres headers for whichever version of postgres you are running, and pgx. We recommend installing rust using the official instructions:
6+
7+
Building the extension requires valid rust, rustfmt, and clang installs, along with the postgres headers for whichever version of postgres you are running, and pgx. We recommend installing rust using the official instructions:
78
```shell
89
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
910
```
10-
and build tools, the postgres headers, in the preferred manner for your system. You may also need to install OpenSSl. For Ubuntu you can follow the postgres install instructions then run
11+
and build tools, the postgres headers, in the preferred manner for your system. You may also need to install OpenSSL. For Ubuntu you can follow the postgres install instructions then run
1112

1213
```shell
1314
sudo apt-get install make gcc pkg-config clang postgresql-server-dev-16 libssl-dev
@@ -28,10 +29,11 @@ cargo pgrx init --pg16 pg_config
2829
Installing from source is also available on macOS and requires the same set of prerequisites and set up commands listed above.
2930

3031
💾 Building and Installing the extension
32+
3133
Download or clone this repository, and switch to the extension subdirectory, e.g.
3234
```shell
3335
git clone https://github.com/timescale/timescale-vector && \
34-
cd timescale-vector/extension
36+
cd timescale-vector/timescale_vector
3537
```
3638

3739
Then run
@@ -41,9 +43,13 @@ cargo pgrx install --release
4143

4244
To initialize the extension after installation, enter the following into psql:
4345

46+
```sql
4447
CREATE EXTENSION timescale_vector;
48+
```
49+
4550
✏️ Get Involved
46-
The Timescale Vecotr project is still in the initial planning stage as we decide our priorities and what to implement first. As such, now is a great time to help shape the project's direction! Have a look at the list of features we're thinking of working on and feel free to comment on the features, expand the list, or hop on the Discussions forum for more in-depth discussions.
51+
52+
The Timescale Vector project is still in it's early stage as we decide our priorities and what to implement. As such, now is a great time to help shape the project's direction! Have a look at the list of features we're thinking of working on and feel free to comment on the features, expand the list, or hop on the Discussions forum for more in-depth discussions.
4753

4854
🔨 Testing
4955
See above for prerequisites and installation instructions.
@@ -59,6 +65,7 @@ cargo test -- --ignored && cargo pgrx test ${postgres_version}
5965
```
6066

6167
🐯 About Timescale
68+
6269
TimescaleDB is a distributed time-series database built on PostgreSQL that scales to over 10 million of metrics per second, supports native compression, handles high cardinality, and offers native time-series capabilities, such as data retention policies, continuous aggregate views, downsampling, data gap-filling and interpolation.
6370

6471
TimescaleDB also supports full SQL, a variety of data types (numerics, text, arrays, JSON, booleans), and ACID semantics. Operationally mature capabilities include high availability, streaming backups, upgrades over time, roles and permissions, and security.

timescale_vector/src/access_method/README.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)