# File lib/moneta/adapters/activerecord.rb, line 27
        def get(options)
          name = 'Table_' << options.inspect.gsub(/[^\w]+/) do
            $&.unpack('H2' * $&.bytesize).join.upcase
          end
          @table_mutex.synchronize do
            table =
              if const_defined?(name)
                const_get(name)
              else
                create(name, options)
              end
            @table_refcount[table] ||= 0
            @table_refcount[table] += 1
            table
          end
        end