search.search_index

Classes

SearchIndex

Full-text Search Index (fts) for all searchable models and entries.

Module Contents

class search.search_index.SearchIndex[source]

Bases: onegov.core.orm.Base, onegov.core.orm.mixins.UTCPublicationMixin

Full-text Search Index (fts) for all searchable models and entries.

This table contains full-text search (fts) index information for all searchable models, including the owner of the index, the type of the owner, and the full-text search data. It is used to facilitate efficient searching across different models and entries.

__tablename__ = 'search_index'[source]
id[source]
owner_type[source]
owner_tablename[source]
owner_id_int[source]
owner_id_uuid[source]
owner_id_str[source]
public[source]
access[source]
last_change[source]
_tags: sqlalchemy.Column[dict[str, str] | None][source]
suggestion[source]
fts_idx_data[source]
fts_idx[source]
__mapper_args__[source]
__table_args__[source]
property tags: set[str][source]