# File lib/merb-cache/stores/strategy/abstract_strategy_store.rb, line 51
      def initialize(config = {})
        @stores = contextualized_stores.map do |cs|
          case cs
          when Symbol
            Merb::Cache[cs]
          when Class
            cs.new(config)
          end
        end
      end