GenieCache.fromcache-Tuple{Any} - Method
fromcache(key::Any, expiration::Int; dir::String = "") :: Union{Nothing,Any}

Retrieves from cache the object stored under the key key if the expiration delta (in seconds) is in the future.

source


GenieCache.purge-Tuple{Any} - Method
purge(key::Any) :: Nothing

Removes the cache data stored under the key key.

source


GenieCache.purgeall-Tuple{} - Method
purgeall(; dir::String = "") :: Nothing

Removes all cached data.

source


GenieCache.tocache-Tuple{Any, Any} - Method
tocache(key::Any, content::Any; dir::String = "") :: Nothing

Persists content onto the file system under the key key.

source


GenieCacheFileCache.cache_path!-Tuple{AbstractString} - Method
cache_path!(cachepath::AbstractString)

Sets the default path of the cache folder.

source


GenieCacheFileCache.cache_path-Tuple{Any} - Method
cache_path(key::Any; dir::String = "") :: String

Computes the path to a cache key based on current cache settings.

source


GenieCacheFileCache.cache_path-Tuple{} - Method
cache_path()

Returns the default path of the cache folder.

source



Genie