What does `incoming link count` in discourse database mean?

I was hoping that incoming link count for a post in discourse database means no. of times external websites have mentioned that post in their content… But the numbers that I have are too high to believe that.
Could someone please explain what does incoming link count mean?

إعجابَين (2)

I believe it is the number of incoming links from the forum itself, that is, the number of other posts that have linked to that post.

There is no rational way to determine how many times external websites have linked to a place without crawling the entire web, like Google.

7 إعجابات

لقد نظرت إلى الكود ويبدو أن incoming_link_count مشابه لجدول “topic_views” باستثناء أنه لا يزيد incoming_link_count عندما يكون تنسيق الطلب هو json.

هنا الأسطر ذات الصلة في topics_controller.rb

  def track_visit_to_topic
    topic_id =  @topic_view.topic.id
    ip = request.remote_ip
    user_id = (current_user.id if current_user)
    track_visit = should_track_visit_to_topic?

    if !request.format.json?
      hash = {
        referer: request.referer || flash[:referer],
        host: request.host,
        current_user: current_user,
        topic_id: @topic_view.topic.id,
        post_number: @topic_view.current_post_number,
        username: request['u'],
        ip_address: request.remote_ip
      }
      # تأجيل هذا بهذه الطريقة حتى لا نلتقط وحدة التحكم بأكملها
      # في الإغلاق
      TopicsController.defer_add_incoming_link(hash)
    end

    TopicsController.defer_track_visit(topic_id, ip, user_id, track_visit)
  end

كنت آمل أن يخبرني هذا العمود بعدد المرات التي وصل فيها شخص ما إلى هذا الموضوع من رابط خارجي (بما في ذلك محركات البحث الخارجية) مقابل النقر على الروابط الداخلية.

إعجاب واحد (1)

نفس الشيء! سيكون من الرائع إذا كان من الممكن رؤية الموضوعات التي تتم زيارتها أكثر من الروابط الخارجية :+1::+1::+1: