pkgsrc/databases/postgresql82-tsearch2/DESCR
adam 1b3128868d Changes 8.2.0:
* Query language enhancements including "INSERT/UPDATE/DELETE
  RETURNING", multirow VALUES lists, and optional target-table alias
  in "UPDATE"/"DELETE"
* Index creation without blocking concurrent
  "INSERT"/"UPDATE"/"DELETE" operations
* Many query optimization improvements, including support for
  reordering outer joins
* Improved sorting performance with lower memory usage
* More efficient locking with better concurrency
* More efficient vacuuming
* Easier administration of warm standby servers
* New FILLFACTOR support for tables and indexes
* Monitoring, logging, and performance tuning additions
* More control over creating and dropping objects
* Table inheritance relationships can be defined for and removed from
  pre-existing tables
* "COPY TO" can copy the output of an arbitrary "SELECT" statement
* Array improvements, including nulls in arrays
* Aggregate-function improvements, including multiple-input
  aggregates and SQL:2003 statistical functions
* Many "contrib/" improvements
2006-12-09 16:13:57 +00:00

6 lines
384 B
Text

The Tsearch2 contrib module contains an implementation of a new data
type tsvector - a searchable data type with indexed access. In a
nutshell, tsvector is a set of unique words along with their
positional information in the document, organized in a special
structure optimized for fast access and lookup. This data type can
be used as backend for efficient full text search engines.