Neon -- AWS Aurora Postgres 的無服務器開源替代品
簡介
Neon 是 AWS Aurora Postgres 的無服務器開源替代品。它將存儲和計算分開,并通過跨節(jié)點集群重新分布數(shù)據(jù)來替代 PostgreSQL 存儲層。 嘗試使用 Neon免費套餐創(chuàng)建無服務器 Postgres 實例。然后使用您首選的 Postgres 客戶端(psql、dbeaver 等)連接到它或使用在線 SQL 編輯器。有關連接說明,請參閱從任何應用程序連接。或者,在本地編譯并運行該項目。
架構概述
Neon 由計算節(jié)點和 Neon 存儲引擎組成。計算節(jié)點是由 Neon 存儲引擎支持的無狀態(tài) PostgreSQL 節(jié)點。
Neon 存儲引擎由兩個主要組件組成: Pageserver - 計算節(jié)點的可擴展存儲后端。 Safekeepers - Safekeepers 形成一個冗余的 WAL 服務,從計算節(jié)點接收 WAL,并將其持久存儲,直到它被 Pageserver 處理并上傳到云存儲。
- https://github.com/neondatabase/neon
Rusqlite 使用 Rust 的 SQLite 包裝器
Rusqlite 是一個使用 Rust 的 SQLite 的符合人體工程學的包裝器。從歷史上看,該 API 是基于 rust-postgres. 然而,兩者在很多方面存在分歧,并且兩者之間不存在兼容性。
使用
在您的 Cargo.toml 中:
[dependencies] # `bundled` causes us to automatically compile and link in an up to date # version of SQLite for you. This avoids many common build issues, and # avoids depending on the version of SQLite on the users system (or your # system), which may be old or missing. It's the right choice for most # programs that control their own SQLite databases. # # That said, it's not ideal for all scenarios and in particular, generic # libraries built around `rusqlite` should probably not enable it, which # is why it is not a default feature -- it could become hard to disable. rusqlite = { version = "0.29.0", features = ["bundled"] }
簡單示例用法:
use rusqlite::{Connection, Result}; #[derive(Debug)] struct Person { id: i32, name: String, data: Option<Vec<u8>>, } fn main() -> Result<()> { let conn = Connection::open_in_memory()?; conn.execute( "CREATE TABLE person ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, data BLOB )", (), // empty list of parameters. )?; let me = Person { id: 0, name: "Steven".to_string(), data: None, }; conn.execute( "INSERT INTO person (name, data) VALUES (?1, ?2)", (&me.name, &me.data), )?; let mut stmt = conn.prepare("SELECT id, name, data FROM person")?; let person_iter = stmt.query_map([], |row| { Ok(Person { id: row.get(0)?, name: row.get(1)?, data: row.get(2)?, }) })?; for person in person_iter { println!("Found person {:?}", person.unwrap()); } Ok(()) }
支持的 SQLite 版本
基礎 rusqlite 包支持 SQLite 版本 3.14.0 或更高版本。如果您需要舊版本的支持,請?zhí)岢鰡栴}。一些貨物功能需要更新的 SQLite 版本;請參閱下面的詳細信息。
-
服務器
+關注
關注
12文章
9160瀏覽量
85415 -
編輯器
+關注
關注
1文章
806瀏覽量
31171 -
AWS
+關注
關注
0文章
432瀏覽量
24365 -
Rust
+關注
關注
1文章
228瀏覽量
6607
原文標題:【Rust日報】2023-08-16 Neon 基于 rust 的 AWS Aurora Postgres 的無服務器開源替代品
文章出處:【微信號:Rust語言中文社區(qū),微信公眾號:Rust語言中文社區(qū)】歡迎添加關注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關推薦
評論