deephyper.evaluator.storage#

This subpackage provides an interface to implement new storage clients. The base class defining this interface is the deephyper.evaluator.storage.Storage. A storage in our langage is a synonym of memory. Different databases or memory systems can be used through this interface (e.g., key-value storage, relational database, etc.).

Classes

MemoryStorage

Storage client for local in-memory storage.

RayStorage

Storage class using Ray actors.

RedisStorage

Storage client for Redis.

Storage

An abstract interface representing a storage client.