Skip to content

Commit a2b9260

Browse files
committed
Fix
1 parent 43decdb commit a2b9260

File tree

1 file changed

+1
-1
lines changed
  • src/app/learn/postgresql/what-is-pgrx

1 file changed

+1
-1
lines changed

src/app/learn/postgresql/what-is-pgrx/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The project lives under the [PgCentral Foundation](https://pgcentral.org/), a 50
134134

135135
## When to Use pgrx
136136

137-
pgrx is a good fit when you need to extend PostgreSQL with logic that benefits from Rust's performance or safety characteristics. Compute-heavy functions, custom index types, integrations with Rust libraries, and any extension where a crash would be unacceptable are natural candidates.
137+
pgrx is a good fit when you need to extend PostgreSQL with logic that benefits from Rust's performance or safety characteristics. Compute-heavy functions, custom index types, integrations with Rust libraries, and any extension where a crash would be unacceptable are natural candidates. You may also choose to use PGRX when you benefit from Rust's ecosystem, one of the reasons ParadeDB choose Rust was because the amazing Tantivy library existed to help with full-text search.
138138

139139
For simpler logic (data validation, lightweight transformations, glue code), PL/pgSQL may be sufficient and easier to deploy, since it doesn't require compiling native code.
140140

0 commit comments

Comments
 (0)