Timescale 是 PostgreSQL,它变得 强大
精选文章
适用于工业物联网数据的 PostgreSQL
OpenSauced 如何使用 pgvector 和 Timescale 构建 Git 历史记录的副驾驶
AI 和向量
适用于 AI 的 PostgreSQL。使用 pgvector、pgvectorscale 和 pgai 扩展无缝构建 RAG、搜索和 AI 代理。
pgai 文档pgvector 文档AI 和向量学习 PostgreSQL
Timescale 是 PostgreSQL,但更快。学习 PostgreSQL 基础知识并扩展您的数据库性能,使其达到新的高度
$ psql -U username -f filename.sql
// 使用 psql 实用程序 (psql) 恢复由 pg_dump 或 pg_dumpall 生成的数据库纯文本备份 (.sql)
$ pg_restore -d db_name /path/to/your/file/db_name.bak -c -U db_user
// 使用 pg_restore 实用程序 (pg_restore) 恢复数据库自定义归档备份 (.bak)
pgBackrest 是 Postgres 备份创建/恢复的绝佳工具,但对于大型数据库而言,它可能会变慢。了解我们如何 使用 EBS 快照和 pgBackrest 将 Postgres 备份速度提高 100 倍。