Skip to content

Commit

Permalink
Update 060-full-text-search.mdx (#5752)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasburk authored Mar 26, 2024
1 parent 42a49f1 commit 2d591ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ preview: true

Prisma Client supports full-text search for **PostgreSQL** databases in versions 2.30.0 and later, and **MySQL** databases in versions 3.8.0 and later. With full-text search enabled, you can add search functionality to your application by searching for text within a database column.

> **Note**: There currently is a [known issue](https://github.com/prisma/prisma/issues/8950) in the full-text search feature. If you observe slow search queries, you can [optimize your query with raw SQL](#full-text-search-with-raw-sql).
> **Note**: There currently is a [known issue](https://github.com/prisma/prisma/issues/23627) in the full-text search feature. If you observe slow search queries, you can [optimize your query with raw SQL](#full-text-search-with-raw-sql).
</TopBlock>

Expand Down Expand Up @@ -248,7 +248,7 @@ However, if you try to search on `title` alone, the search will fail with the er
## Full-text search with raw SQL
Full-text search is currently in Preview and due to a [known issue](https://github.com/prisma/prisma/issues/8950), you may be seeing slow search queries. If that's the case, you can optimize your query using [raw SQL](/orm/prisma-client/queries/raw-database-access).
Full-text search is currently in Preview and due to a [known issue](https://github.com/prisma/prisma/issues/23627), you may be seeing slow search queries. If that's the case, you can optimize your query using [raw SQL](/orm/prisma-client/queries/raw-database-access).
### PostgreSQL
Expand Down

0 comments on commit 2d591ca

Please sign in to comment.