# File lib/moneta/adapters/mongo.rb, line 76
      def store(key, value, options = {})
        key = to_binary(key)
        @collection.update({ '_id' => key },
                           value_to_doc(key, value, options),
                           { :upsert => true })
        value
      end