SqlNormalizedCacheFactory

class SqlNormalizedCacheFactory(name: String?, withDates: Boolean)

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

class SqlNormalizedCacheFactory(name: String?, withDates: Boolean) : 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"

withDates

: whether to store dates (receive dates or expiration dates) Once a database is created, this parameter cannot change Default: false

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"

withDates

: whether to store dates (receive dates or expiration dates) Once a database is created, this parameter cannot change Default: false

Constructors

SqlNormalizedCacheFactory
Link copied to clipboard
fun SqlNormalizedCacheFactory(url: String, properties: Properties = Properties(), withDates: Boolean = false)
SqlNormalizedCacheFactory
Link copied to clipboard
fun SqlNormalizedCacheFactory(name: String?, withDates: Boolean, baseDir: String?)
SqlNormalizedCacheFactory
Link copied to clipboard
fun SqlNormalizedCacheFactory(name: String? = "apollo.db", withDates: Boolean = false)
: 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"

fun SqlNormalizedCacheFactory(name: String? = "apollo.db", withDates: Boolean = false)

Functions

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