pipecat.store module

Functions for storing data.

class pipecat.store.Cache(source)

Bases: object

Cache records in memory for column-oriented access.

next()
table
class pipecat.store.Table

Bases: object

append(record)
items()
keys()
reset()
values()
pipecat.store.cache(source)

Create an in-memory cache for records.

Parameters:source (generator, required) – A source of records to be cached.
Returns:cache
Return type:instance of pipecat.store.Cache.