repoze.pgtextindex

Software Screenshot:
repoze.pgtextindex
Software Details:
Version: 1.1
Upload Date: 20 Feb 15
Developer: Shane Hathaway
Distribution Type: Freeware
Downloads: 3

Rating: 3.0/5 (Total Votes: 1)

repoze.pgtextindex is a repoze.catalog indexing plugin that provides a text search engine based on the powerful text indexing capabilities of PostgreSQL 8.4 and above. It is designed to take the place of any text search index based on zope.index. Installation typically requires few or no changes to code that already uses repoze.catalog.

The advantages of repoze.pgtextindex over zope.index.text include:

 * Performance. For large datasets, repoze.pgtextindex can be orders of magnitude faster than zope.index, mainly because repoze.pgtextindex does not have the overhead of unpickling objects that zope.index has.
 * Lower RAM consumption. Users of zope.index work around the unpickling overhead by keeping large caches of unpickled objects in RAM. Even worse, each thread keeps its own copy of the object cache. PostgreSQL, on the other hand, does not need to maintain complex structures in RAM. The PostgreSQL process size tends to be constant and reasonable.
 * Maintenance. The text indexing features of PostgreSQL are well documented and receive a great deal of active maintenance, while zope.index has not received much developer attention for years.

repoze.pgtextindex does not cause PostgreSQL to be involved in every catalog query and update. Only operations that use or change the text index hit PostgreSQL.

Usage:

repoze.pgtextindex is used just like any other index in repoze.catalog:

from repoze.pgtextindex import PGTextIndex

index = PGTextIndex(
 discriminator,
 dsn,
 table='pgtextindex',
 ts_config='english',
 drop_and_create=True)


The arguments to the constructor are as follows:

discriminator
 The repoze.catalog discrminator for this index. For more information on discrminators see the repoze.catalog documentation. This argument is required.
dsn
 The connection string for connecting to PostgreSQL. This argument is required.
table
 The table to use for the index. The default is 'pgtextindex'.
ts_config
 The PostgreSQL text search configuration to use for the index. The default is 'english' which is the default built in configuration which ships with PostgreSQL. For more information on text search configuration, see the PostgreSQL full text search documentation.
drop_and_create
 If True the table and index used will dropped (if it exists) and (re)created. The default is True.

What is new in this release:

  • Handle concurrent index updates cleanly.

What is new in version 0.5:

  • Switched to read committed isolation and removed explicit locking. The explicit locking was reducing write performance and may have been interfering with autovacuum. This change raises the probability of temporary inconsistency, but since this package did not provide ACID compliance anyway, developers already need to be prepared for temporary inconsistency.

What is new in version 0.3:

  • Fixed PostgreSQL ProgrammingError when query string contains a backslash character. (LP #798725)
  • Added ability to mark content with arbitrary markers which can be used as discriminators at query time. (LP #792334)
  • Support searches for words containing an apostrophe. (LP #801265)

Requirements:

  • Python

Similar Software

Other Software of Developer Shane Hathaway

Comments to repoze.pgtextindex

Comments not found
Add Comment
Turn on images!