Sha256: a04191f089e2bac2ec8b6fe6bf3cfd77bd5ea394c1ff1acae7c5410dee74eed5

Contents?: true

Size: 1.31 KB

Versions: 13

Compression:

Stored size: 1.31 KB

Contents

# Memoize module simply memoizes the values returned by lookup using
# a flat hash and can tremendously speed up the lookup process in a backend.
#
# To enable it you can simply include the Memoize module to your backend:
#
#   I18n::Backend::Simple.include(I18n::Backend::Memoize)
#
# Notice that it's the responsibility of the backend to define whenever the
# cache should be cleaned.
module I18n
  module Backend
    module Memoize
      def available_locales
        @memoized_locales ||= super
      end

      def store_translations(locale, data, options = {})
        reset_memoizations!(locale)
        super
      end

      def reload!
        reset_memoizations!
        super
      end

      protected

        def lookup(locale, key, scope = nil, options = {})
          flat_key  = I18n::Backend::Flatten.normalize_flat_keys(locale,
            key, scope, options[:separator]).to_sym
          flat_hash = memoized_lookup[locale.to_sym]
          flat_hash.key?(flat_key) ? flat_hash[flat_key] : (flat_hash[flat_key] = super)
        end

        def memoized_lookup
          @memoized_lookup ||= I18n.new_double_nested_cache
        end

        def reset_memoizations!(locale=nil)
          @memoized_locales = nil
          (locale ? memoized_lookup[locale.to_sym] : memoized_lookup).clear
        end
    end
  end
end

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
tdiary-5.0.8 vendor/bundle/gems/i18n-0.9.5/lib/i18n/backend/memoize.rb
i18n-1.0.0 lib/i18n/backend/memoize.rb
i18n-0.9.5 lib/i18n/backend/memoize.rb
i18n-0.9.4 lib/i18n/backend/memoize.rb
i18n-0.9.3 lib/i18n/backend/memoize.rb
i18n-0.9.1 lib/i18n/backend/memoize.rb
i18n-0.9.0 lib/i18n/backend/memoize.rb