class Prismic::BasicNullCache
Available as an api cache for testing purposes (no caching)
Public Instance Methods
get(key)
click to toggle source
# File lib/prismic/cache/lru.rb, line 111 def get(key) end
set(key, value = nil, expired_in = nil) { |: value| ... }
click to toggle source
# File lib/prismic/cache/lru.rb, line 114 def set(key, value = nil, expired_in = nil) block_given? ? yield : value end
Also aliased as: get_or_set