设置 pgvector 扩展
安装并配置 pgvector 扩展,为 PostgreSQL 添加向量数据类型和函数。
设置 pgvector 扩展 是 CoddyKit 上的免费 Vector Databases: Pinecone, Weaviate & pgvector 课时。 这是第 1 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Vector Databases: Pinecone, Weaviate & pgvector 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Vector Databases: Pinecone, Weaviate & pgvector 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Meet pgvector: Vector Power
Welcome to pgvector! This powerful extension brings vector database capabilities directly to your PostgreSQL database.
Why is this cool? It means you can store, index, and query vector embeddings alongside your traditional data, all within the familiar PostgreSQL environment. No need for a separate vector database for simple cases!
Why Use pgvector?
pgvector is perfect for adding semantic search, recommendation systems, and AI features to applications that already use PostgreSQL.
- Simplicity: Use your existing database skills.
- Integration: Vectors live with your other data.
- Cost-Effective: Often cheaper than dedicated vector databases for smaller scales.
Prerequisites: PostgreSQL
Before we can install pgvector, you need to have PostgreSQL installed and running on your system. This lesson assumes you have a working PostgreSQL instance and administrative access.
If you don't have PostgreSQL, you'll need to install it first. Many operating systems offer packages for easy installation.
Connecting to PostgreSQL
To manage your PostgreSQL database and install extensions, you'll typically use the psql command-line tool. Open your terminal or command prompt and connect to your database.
You might need to specify the user and database. For example, connecting as the default 'postgres' user to the default database:
psql -U postgresEnabling the pgvector Extension
Once you're connected to your PostgreSQL database via psql, enabling an extension is straightforward. PostgreSQL has a built-in mechanism for this.
The key command you'll use is CREATE EXTENSION. This command tells PostgreSQL to load and activate the functionality provided by the specified extension.
The CREATE EXTENSION Command
To enable pgvector, simply run the following command. Make sure you are connected to the specific database where you want to use pgvector.
Note: You might need superuser privileges to create extensions.
CREATE EXTENSION vector;Verifying Installation
After running CREATE EXTENSION vector;, it's good practice to verify that the extension was successfully installed and is active in your database.
PostgreSQL provides a command within psql to list all installed extensions. This helps confirm pgvector is ready to use.
Listing Active Extensions
Inside psql, use the \dx command to list all installed extensions. You should see 'vector' in the list if the installation was successful.
After confirming, you can exit psql by typing \q.
\dxIntroducing the Vector Type
With pgvector installed, you now have access to a new data type: vector. This type allows you to store arrays of floating-point numbers, which are perfect for embeddings.
When defining a column, you'll specify the vector type and its dimension (e.g., vector(1536) for OpenAI's embeddings).
Quick Check
You've just learned how to enable the pgvector extension. Let's test your understanding!
Recap: pgvector Setup
Great job! In this lesson, you've successfully learned how to set up pgvector.
- We understood what pgvector is and its benefits.
- We practiced connecting to PostgreSQL using
psql. - You now know how to enable the extension with
CREATE EXTENSION vector;. - Finally, you can verify its installation using
\dx.
Now your PostgreSQL database is ready to store and work with vector embeddings!
常见问题解答
「设置 pgvector 扩展」课时是免费的吗?
是的 — 「设置 pgvector 扩展」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Vector Databases: Pinecone, Weaviate & pgvector 课程的其余内容,请升级到 CoddyKit PRO。 Vector Databases: Pinecone, Weaviate & pgvector 课程共包含 4 节课。
「设置 pgvector 扩展」这节课中我会学到什么?
安装并配置 pgvector 扩展,为 PostgreSQL 添加向量数据类型和函数。 你通过在浏览器中直接运行的动手代码来练习 Vector Databases: Pinecone, Weaviate & pgvector,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Vector Databases: Pinecone, Weaviate & pgvector 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Vector Databases: Pinecone, Weaviate & pgvector 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 4 节。
「设置 pgvector 扩展」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Vector Databases: Pinecone, Weaviate & pgvector 课中编写并运行代码吗?
能。每节 Vector Databases: Pinecone, Weaviate & pgvector 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 设置 pgvector 扩展
- 在 PostgreSQL 中存储向量
- 执行相似度查询
- 在 pgvector 中选择距离指标