扩展与集成

返回 PostgreSQL


常用扩展

扩展功能
postgis地理空间数据,GIS 系统首选
pgvector向量存储和相似度搜索,AI 应用常用
pg_trgm三元组模糊搜索,比 LIKE 快
uuid-osspUUID 生成函数
pg_stat_statementsSQL 执行统计,性能分析
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS "pgvector";

向量场景对比:Milvus


Spring Boot 集成

依赖:

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
</dependency>

配置:

spring:
  datasource:
    url: jdbc:postgresql://localhost:5432/mydb
    username: postgres
    password: secret
    driver-class-name: org.postgresql.Driver

相关集成:


相关