Package ai. whylabs. services. whylogs. persistent. map
Types
Link copied to clipboard
Link copied to clipboard
data class MapMessageHandlerOptions<K, V>(val writeLayer: MapWriteLayer<K, V>, val retryPolicy: RetryPolicy<Throwable>? = defaultRetryPolicy) : RetryOptions
Content copied to clipboard
Link copied to clipboard
Acts as the kernel for actually persisting/storing items in a PersistentMap. Many of these are not exposed through PersistentMap but they're required to make certain guarantees in the apis that are exposed.
Link copied to clipboard
A map-like utility that immediately persists all of its contents to disk.
Link copied to clipboard
class SqliteMapWriteLayer<K, V>( name: String, keySerializer: Serializer<K>, valueSerializer: Serializer<V>) : SqliteManager, MapWriteLayer<K, V>
Content copied to clipboard
Implementation of MapWriteLayer that uses sqlite as the storage layer.