core.indexes

Module Contents

Classes

IndexMannager

This module provides efficient pagination for a small specified set of queries.

class core.indexes.IndexMannager(pageSize: int = 10, maxPages: int = 100)

This module provides efficient pagination for a small specified set of queries. The datastore does not provide an efficient method for skipping N number of entities. This prevents the usual navigation over multiple pages (in most cases - like a google search - the user expects a list of pages (eg. 1-10) on the bottom of each page with direct access to these pages). With the datastore and it’s cursors, the most we can provide is a next-page & previous-page link using cursors. This module provides an efficient method to provide these direct-access page links under the condition that only a few, known-in-advance queries will be run. This is typically the case for forums, where there is only one query per thread (it’s posts ordered by creation date) and one for the threadlist (it’s threads, ordered by changedate).

To use this module, create an instance of this index-manager on class-level (setting pageSize & maxPages). Then call :meth:getPages with the query you want to retrieve the cursors for the individual pages for. This will return one start-cursor per available page that can then be used to create urls that point to the specific page. When the entities returend by the query change (eg a new post is added), call :meth:refreshIndex for each affected query.

Note

The refreshAll Method is missing - intentionally. Whenever data changes you have to call refreshIndex for each affected Index. As long as you can name them, their number is limited and this module can be efficiently used.

_dbType = viur_indexes
keyFromQuery(self, query: viur.core.db.Query) str

Derives a unique Database-Key from a given query. This Key is stable regardless in which order the filter have been applied

Parameters

query – Query to derive key from

Returns

The unique key derived

getOrBuildIndex(self, origQuery: viur.core.db.Query) List[str]

Builds a specific index based on origQuery AND local variables (self.indexPage and self.indexMaxPage) Returns a list of starting-cursors for each page. You probably shouldn’t call this directly. Use cursorForQuery.

Parameters

origQuery – Query to build the index for

Returns

[]

cursorForQuery(self, query: viur.core.db.Query, page: int) Optional[str]

Returns the starting-cursor for the given query and page using an index.

Parameters
  • query – Query to get the cursor for

  • page – Page the user wants to retrieve

Returns

Cursor or None if no cursor is applicable

getPages(self, query: viur.core.db.Query) List[str]

Returns a list of all starting-cursors for this query. The first element is always None as the first page doesn’t have any start-cursor

refreshIndex(self, query: viur.core.db.Query)

Refreshes the Index for the given query (Actually it removes it from the db so it gets rebuild on next use)

Parameters

query (db.Query) – Query for which the index should be refreshed