Full Read Key Value Cache Repo
open class FullReadKeyValueCacheRepo<Key, Value>(parentRepo: ReadKeyValueRepo<Key, Value>, kvCache: FullKVCache<Key, Value>) : ReadKeyValueRepo<Key, Value> , FullCacheRepo
Content copied to clipboard
Constructors
Link copied to clipboard
fun <Key, Value> FullReadKeyValueCacheRepo(parentRepo: ReadKeyValueRepo<Key, Value>, kvCache: FullKVCache<Key, Value>)
Content copied to clipboard
Functions
Link copied to clipboard
open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
open suspend override fun keys( v: Value, pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
This method should use sorted by Keys search and take the PaginationResult. By default, it should use ascending sort for Keys
Link copied to clipboard
open suspend override fun values(pagination: Pagination, reversed: Boolean): PaginationResult<Value>
Content copied to clipboard
This method should use sorted by Keys search and take the PaginationResult. By default, it should use ascending sort for Keys