Full Text Search In PostgreSQL
by Karwin Software Solutions LLC
- 38,712 views
A comparison of different solutions for full-text search in web applications using PostgreSQL and other technology. Presented at the PostgreSQL Conference West, in Seattle, October 2009.
A comparison of different solutions for full-text search in web applications using PostgreSQL and other technology. Presented at the PostgreSQL Conference West, in Seattle, October 2009.
Accessibility
Categories
Upload Details
Uploaded via SlideShare as Adobe PDF
Usage Rights
© All Rights Reserved
Statistics
- Likes
- 32
- Downloads
- 658
- Comments
- 5
- Embed Views
- Views on SlideShare
- 37,260
- Total Views
- 38,712
'The @@ operator also supports text input, allowing explicit conversion of a text string to tsvector or tsquery to be skipped in simple cases. ... The form text @@ text is equivalent to to_tsvector(x) @@ plainto_tsquery(y).' 2 years ago
Not sure if it was a typo, but the query specified in slide #21 doesn't throw any results. Shouldn't it be modified to the following?
SELECT * FROM Posts WHERE PostText @@ to_tsquery('postgresql & performance')
Thank you! 2 years ago