According to the tooltip, "questions with the most links" are put into a tag's FAQ. The comments in this answer seem to confirm that. However, that does not at all seem like what I see when I look for instance at the FAQ on SO. Here are a couple examples:

  1. how to track object inside Arraylist becoming null?
  2. java issues with arraylist
  3. Spring MVC - No mapping found for request URI
  4. persisting to mysql using spring, hibernate and JPA failed, not really persisting to database

None of them display any questions as being linked, and #1 and #2 are neither highly viewed nor highly voted. Why are these showing up as being frequently asked?

EDIT: It appears Waffles might be a bit confused. This is understandable due to the distinct lack of freehand circles in my original post. Perhaps now the issue will be more clear:

enter image description here

share|improve this question
Weirdness; navigate through the Linked Questions on this question: stackoverflow.com/questions/6437172/… . All subsequent pages link to the first page according to Linked Questions but no link seems to be present in the actual question+answers+comments. – Ben Brocka Jan 4 '12 at 22:22
which FAQ are you talking about? not seeing your answers here: stackoverflow.com/questions/tagged/… – Sam Saffron Jan 4 '12 at 22:50
top one has TONS of links stackoverflow.com/questions/3177733/… – Sam Saffron Jan 4 '12 at 22:50
@waffles Read that page you linked more closely. Note my numbers bear no relation to the order they appear on the page (check the 9th, 18th, 6th, and 3rd items on the linked page). – Michael McGowan Jan 4 '12 at 22:54
2  
Im looking something is a bit odd – Sam Saffron Jan 4 '12 at 23:11
note your list of FAQ questions is very different to the one I see, which may indicate we have a weird concurrency issue – Sam Saffron Jan 4 '12 at 23:23
1  
note 2 / we dumped our cache and it is ok at the moment, but I suspect our delta update for the cache has an issue, Marc and I will investigate – Sam Saffron Jan 4 '12 at 23:30

1 Answer

up vote 9 down vote accepted

Do tag FAQs work as designed?

No they did not, in particular there were 2 issues:

  1. The linked question list counts both incoming and outgoing links, the original implementation of FAQ only counted incoming links. Something that causes a bit of confusion and hurts a bit.

  2. The delta update process had a query of the form select * from Link where Type = 1 and RelatedPostId = 2 or PostId = 2 ... the missing brackets caused weird and wonderful stuff to happen

Both issues fixed now and deployed.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged