We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd702313 commit8753157Copy full SHA for 8753157
contrib/tsearch2/README.tsearch2
@@ -31,7 +31,18 @@ Tsearch2 - full text search extension for PostgreSQL
31
* specify the parser used to process a document.
32
33
See [11]Documentation Roadmap for links to documentation.
34
-
+
35
+OpenFTS vs Tsearch2
36
37
+ OpenFTS is a middleware between application and database, so it uses
38
+ tsearch2 as a storage, while database engine is used as a query executor
39
+ (searching). Everything else (parsing of documents, query processing,
40
+ linguistics) carry outs on client side. That's why OpenFTS has its own
41
+ configuration table (fts_conf) and works with its own set of dictionaries.
42
+ OpenFTS is more flexible, because it could be used in multi-server
43
+ architecture with separated machines for repository of documents
44
+ (documents could be stored in file system), database and query engine.
45
46
Authors
47
48
* Oleg Bartunov <oleg@sai.msu.su>, Moscow, Moscow University, Russia