Previous topic

Features

This Page

Stores

class ramp.store.MemoryStore(path=None, verbose=False)

Caches values in-memory, no persistence.

class ramp.store.PickleStore(path=None, verbose=False)

Pickles values to disk and caches in memory.

class ramp.store.HDFPickleStore(path=None, verbose=False)

Attempts to store objects in HDF5 format (numpy/pandas objects). Pickles them to disk if that’s not possible; also caches values in-memory.