Text Search Objects

module: pyrseas.dbobject.textsearch

The textsearch module defines eight classes: classes TSConfiguration, TSDictionary, TSParser and TSTemplate derived from DbSchemaObject, and classes TSConfigurationDict, TSDictionaryDict, TSParserDict and TSTemplateDict derived from DbObjectDict.

Text Search Configuration

TSConfiguration is derived from DbSchemaObject and represents a PostgreSQL text search configuration.

autoclass: TSConfiguration

automethod: TSConfiguration.to_map

automethod: TSConfiguration.create

Text Search Configuration Dictionary

TSConfigurationDict is derived from ~pyrseas.dbobject.DbObjectDict. It is a dictionary that represents the collection of text search configurations in a database.

autoclass: TSConfigurationDict

automethod: TSConfigurationDict.from_map

automethod: TSConfigurationDict.diff_map

Text Search Dictionary

TSDictionary is derived from DbSchemaObject and represents a PostgreSQL text search dictionary.

autoclass: TSDictionary

automethod: TSDictionary.create

Text Search Dictionary Dictionary

TSDictionaryDict is derived from ~pyrseas.dbobject.DbObjectDict. It is a Python dictionary that represents the collection of text search dictionaries in a database.

autoclass: TSDictionaryDict

automethod: TSDictionaryDict.from_map

automethod: TSDictionaryDict.diff_map

Text Search Parser

TSParser is derived from DbSchemaObject and represents a PostgreSQL text search parser.

autoclass: TSParser

automethod: TSParser.create

Text Search Parser Dictionary

TSParserDict is derived from ~pyrseas.dbobject.DbObjectDict. It is a dictionary that represents the collection of text search parsers in a database.

autoclass: TSParserDict

automethod: TSParserDict.from_map

automethod: TSParserDict.diff_map

Text Search Template

TSTemplate is derived from DbSchemaObject and represents a PostgreSQL text search template.

autoclass: TSTemplate

automethod: TSTemplate.create

Text Search Template Dictionary

TSTemplateDict is derived from ~pyrseas.dbobject.DbObjectDict. It is a dictionary that represents the collection of text search templates in a database.

autoclass: TSTemplateDict

automethod: TSTemplateDict.from_map

automethod: TSTemplateDict.diff_map