# File lib/openid/store/memcache.rb, line 20
      def store_association(server_url, association)
        serialized = serialize(association)
        [nil, association.handle].each do |handle|
          key = assoc_key(server_url, handle)
          @cache_client.set(key, serialized, expiry(association.lifetime))
        end
      end