Sha256: 4013beffe8fcda9ea7e7be4870aaa78f1d147aaf31eca34e47537e461afd3c50

Contents?: true

Size: 1.35 KB

Versions: 21

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

# 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 = EMPTY_HASH)
        reset_memoizations!(locale)
        super
      end

      def reload!
        reset_memoizations!
        super
      end

      protected

        def lookup(locale, key, scope = nil, options = EMPTY_HASH)
          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

21 entries across 19 versions & 4 rubygems

Version Path
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.6.2 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.6.1 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.6.0 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.5.0 vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.5.0 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.4.0 vendor/bundle/ruby/2.6.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.4.0 vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
i18n-1.5.3 lib/i18n/backend/memoize.rb
i18n-1.5.2 lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.3.0 vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
i18n-1.5.1 lib/i18n/backend/memoize.rb
i18n-1.4.0 lib/i18n/backend/memoize.rb
nullifyable-0.1.0 vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/memoize.rb
i18n-1.3.0 lib/i18n/backend/memoize.rb
i18n-1.2.0 lib/i18n/backend/memoize.rb
vagrant-unbundled-2.2.2.0 vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
i18n-1.1.1 lib/i18n/backend/memoize.rb
i18n-1.1.0 lib/i18n/backend/memoize.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/i18n-1.0.1/lib/i18n/backend/memoize.rb