Percolate in PostgreSQL
Asked Answered
B

0

6

What we usually do is index documents and get them back by querying. What the percolator allows to do in a nutshell is index queries and percolate documents against the indexed queries to know which queries they match. It's also called reversed search.

Is it possible to percolate in PostgreSQL?

Percolate Query in Elasticsearch

Boyett answered 10/7, 2017 at 14:24 Comment(2)
If your queries are text search queries you can probably store a collection of tsquery and JOIN on to_tsvector(document) @@ query.Erratic
@Erratic I think, although a useful functionality with which tsqueries can provide you with part of ES text search functionality, they are not a replacement for percolation search, which is more broad concept - matching a document/record against a search/query.Shatterproof

© 2022 - 2024 — McMap. All rights reserved.