Skip to content

Indexing

IndexMixin - Contains abstract method for indexing the model in the database.

IndexMixin

Contains the method for indexing the model in the database.

Source code in src\ramifice\paladins\indexing.py
class IndexMixin:
    """Contains the method for indexing the model in the database."""

    @classmethod
    @abstractmethod
    async def indexing(cls) -> None:
        """Set up and start indexing."""

indexing() abstractmethod async classmethod

Set up and start indexing.

Source code in src\ramifice\paladins\indexing.py
@classmethod
@abstractmethod
async def indexing(cls) -> None:
    """Set up and start indexing."""