Memory#

The Memory module provides an in-RAM version of the DBContextStorage class.

class MemoryContextStorage(path='', rewrite_existing=False, partial_read_config=None)[source]#

Bases: DBContextStorage

Implements DBContextStorage storing contexts in memory, without file backend. Does not serialize any data. By default, it sets path to an empty string.

Keeps data in a dictionary and two dictionaries:

  • main: {context_id: context_info}

  • turns: {context_id: {labels, requests, responses}}

Parameters:
  • path (str) – Any string, won’t be used.

  • rewrite_existing (bool) – Whether TURNS modified locally should be updated in database or not.

  • partial_read_config (Optional[Dict[Literal['labels', 'requests', 'responses'], Union[Literal['__all__'], int, Set[int]]]]) – Dictionary of subscripts for all possible turn items.

is_concurrent: bool = True#
async _connect()[source]#
async _load_main_info(ctx_id)[source]#
Return type:

Optional[ContextMainInfo]

async _update_context(ctx_id, ctx_info, field_info)[source]#
Return type:

None

async _delete_context(ctx_id)[source]#
Return type:

None

async _load_field_latest(ctx_id, field_name)[source]#
Return type:

List[Tuple[int, bytes]]

async _load_field_keys(ctx_id, field_name)[source]#
Return type:

List[int]

async _load_field_items(ctx_id, field_name, keys)[source]#
Return type:

List[Tuple[int, bytes]]

async _clear_all()[source]#
Return type:

None