Get started with ParadeDB extensions
2023-10-12
Introduction
I got really interested in the ParadeDB project. It brings into the PostgreSQL world the power of the BM25 algorithm as implemented by Tantivy. I've created a Docker image to experiment with the toolchain used.
What's included?
- A
Dockerfile - A
docker-compose.yamlfile
Instructions
- Run
git clone git@github.com:vtripolitakis/paradedb-docker.git - Go to the
paradedb-dockerfolder - Run
docker compose up -d - Open a connection to the PostgreSQL using the
psqlcommand (password ispostgres):psql -U postgres -h localhost - Create the following extensions inside PostgreSQL
CREATE EXTENSION pg_bm25;
CREATE EXTENSION vector;
CREATE EXTENSION search;
What I can do next?
- Read the great documentation of the extensions used:
have fun!
Crafted with ❤ in Crete. © 2022-2024