SqlNormalizedCacheFactory

expect class SqlNormalizedCacheFactory(name: String? = "apollo.db") : NormalizedCacheFactory

Creates a new NormalizedCacheFactory that uses a persistent cache based on Sqlite

actual class SqlNormalizedCacheFactory(name: String?) : NormalizedCacheFactory

Parameters

name

: the name of the database or null for an in-memory database When not in memory, the database will be stored in a platform specific folder

  • on Android it will use Context.getDatabaseName

  • on MacOS, it will use "Application Support/databases/name"

  • on the JVM, it will use "System.getProperty("user.home")/.apollo" Default: "apollo.db"

Constructors

Link copied to clipboard
fun SqlNormalizedCacheFactory(url: String, properties: Properties = Properties())
Link copied to clipboard
fun SqlNormalizedCacheFactory(name: String?, baseDir: String?)
Link copied to clipboard
expect fun SqlNormalizedCacheFactory(name: String? = "apollo.db")
actual fun SqlNormalizedCacheFactory(name: String?)

Functions

Link copied to clipboard
fun chain(factory: NormalizedCacheFactory): NormalizedCacheFactory
fun chain(factory: NormalizedCacheFactory): NormalizedCacheFactory
Link copied to clipboard
abstract fun create(): NormalizedCache
open override fun create(): SqlNormalizedCache
Link copied to clipboard
fun createChain(): NormalizedCache
fun createChain(): NormalizedCache