Sha256: 037c157a2d425907c31166d0ff54178d826cadae8314aa7cb5b8aad9c40a8abf
Contents?: true
Size: 1.93 KB
Versions: 3
Compression:
Stored size: 1.93 KB
Contents
# frozen_string_literal: true # Use singleton class Spree::Preferences::Store.instance to access # require 'singleton' module Spree::Preferences class StoreInstance def initialize @cache = Rails.cache end def set(key, value) @cache.write(key, value) persist(key, value) end alias_method :[]=, :set def exist?(key) @cache.exist?(key) || should_persist? && Spree::Preference.where(key:).exists? end def get(key) # return the retrieved value, if it's in the cache # use unless nil? incase the value is actually boolean false # unless (val = @cache.read(key)).nil? return val end if should_persist? # If it's not in the cache, maybe it's in the database, but # has been cleared from the cache # does it exist in the database? if preference = Spree::Preference.find_by(key:) # it does exist val = preference.value else # use the fallback value val = yield end # Cache either the value from the db or the fallback value. # This avoids hitting the db with subsequent queries. @cache.write(key, val) return val else yield end end alias_method :fetch, :get def delete(key) @cache.delete(key) destroy(key) end def clear_cache @cache.clear end private def persist(cache_key, value) return unless should_persist? preference = Spree::Preference.where(key: cache_key).first_or_initialize preference.value = value preference.save end def destroy(cache_key) return unless should_persist? preference = Spree::Preference.find_by(key: cache_key) preference.destroy if preference end def should_persist? Spree::Preference.table_exists? end end class Store < StoreInstance include Singleton end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
solidus_core-4.4.2 | lib/spree/preferences/store.rb |
solidus_core-4.4.1 | lib/spree/preferences/store.rb |
solidus_core-4.4.0 | lib/spree/preferences/store.rb |