ChallengeRecent Comments with Future Posts

time to read 3 min | 575 words

We were asked to implement comments RSS for this blog, and many people asked about the recent comments widget. That turned out to be quite a bit more complicated than it appeared on first try, and I thought it would make a great challenge.

On the face of it, it looks like a drop dead simple feature, right? Show me the last 5 comments in the blog.

The problem with that is that it ignores something that is very important to me, the notion of future posts. One of the major advantages of RaccoonBlog is that I am able to post stuff that would go on the queue (for example, this post would be scheduled for about a month from the date of writing it), but still share that post with other people. Moreover, those other people can also comment on the post. To make things interesting, it is quite common for me to re-schedule posts, moving them from one date to another.

Given that complication, let us try to define how we want the Recent Comments feature to behave with regards to future posts. The logic is fairly simple:

  • Until the post is public, do not show the post comments.
  • If a post had comments on it while it was a future post, when it becomes public, the comments that were already posted there, should also be included.

The last requirement is a bit tricky. Allow me to explain. It would be easier to understand with an example, which luckily I have:

image_thumb[2]

As you can see, this is a post that was created on the 1st of July, but was published on the 12th. Mike and me have commented on the post shortly after it was published (while it was still hidden from the general public). Then, after it was published, grega_g and Jonty have commented on that.

Now, let us assume that we query at 12 Jul, 08:55 AM, we will not get any comments from this post, but on 12 Jul, 09:01 AM, we should get both comments from this post. To make things more interesting, those should come after comments that were posted (chronologically) after them. Confusing, isn’t it? Again, let us go with a visual aid for explaining things.

In other words, let us say that we also have this as well:

image

Here is what we should see in the Recent Comments:

12 Jul, 2011 – 08:55 AM 12 Jul, 2011 – 09:05 AM
  1. 07/07/2011 07:42 PM – jdn
  2. 07/08/2011 07:34 PM – Matt Warren
  1. 07/03/2011 05:26 PM – Ayende Rahien
  2. 07/03/2011 05:07 PM - Mike Minutillo
  3. 07/07/2011 07:42 PM – jdn
  4. 07/08/2011 07:34 PM – Matt Warren

Note that the 1st and 2snd location on 9:05 are should sort after 3rd and 4th, but are sorted before them, because of the post publish date, which we also take into account.

Given all of that, and regardless of the actual technology that you use, how would you implement this feature?

More posts in "Challenge" series:

  1. (03 Feb 2025) Giving file system developer ulcer
  2. (20 Jan 2025) What does this code do?
  3. (01 Jul 2024) Efficient snapshotable state
  4. (13 Oct 2023) Fastest node selection metastable error state–answer
  5. (12 Oct 2023) Fastest node selection metastable error state
  6. (19 Sep 2023) Spot the bug
  7. (04 Jan 2023) what does this code print?
  8. (14 Dec 2022) What does this code print?
  9. (01 Jul 2022) Find the stack smash bug… – answer
  10. (30 Jun 2022) Find the stack smash bug…
  11. (03 Jun 2022) Spot the data corruption
  12. (06 May 2022) Spot the optimization–solution
  13. (05 May 2022) Spot the optimization
  14. (06 Apr 2022) Why is this code broken?
  15. (16 Dec 2021) Find the slow down–answer
  16. (15 Dec 2021) Find the slow down
  17. (03 Nov 2021) The code review bug that gives me nightmares–The fix
  18. (02 Nov 2021) The code review bug that gives me nightmares–the issue
  19. (01 Nov 2021) The code review bug that gives me nightmares
  20. (16 Jun 2021) Detecting livelihood in a distributed cluster
  21. (21 Apr 2020) Generate matching shard id–answer
  22. (20 Apr 2020) Generate matching shard id
  23. (02 Jan 2020) Spot the bug in the stream
  24. (28 Sep 2018) The loop that leaks–Answer
  25. (27 Sep 2018) The loop that leaks
  26. (03 Apr 2018) The invisible concurrency bug–Answer
  27. (02 Apr 2018) The invisible concurrency bug
  28. (31 Jan 2018) Find the bug in the fix–answer
  29. (30 Jan 2018) Find the bug in the fix
  30. (19 Jan 2017) What does this code do?
  31. (26 Jul 2016) The race condition in the TCP stack, answer
  32. (25 Jul 2016) The race condition in the TCP stack
  33. (28 Apr 2015) What is the meaning of this change?
  34. (26 Sep 2013) Spot the bug
  35. (27 May 2013) The problem of locking down tasks…
  36. (17 Oct 2011) Minimum number of round trips
  37. (23 Aug 2011) Recent Comments with Future Posts
  38. (02 Aug 2011) Modifying execution approaches
  39. (29 Apr 2011) Stop the leaks
  40. (23 Dec 2010) This code should never hit production
  41. (17 Dec 2010) Your own ThreadLocal
  42. (03 Dec 2010) Querying relative information with RavenDB
  43. (29 Jun 2010) Find the bug
  44. (23 Jun 2010) Dynamically dynamic
  45. (28 Apr 2010) What killed the application?
  46. (19 Mar 2010) What does this code do?
  47. (04 Mar 2010) Robust enumeration over external code
  48. (16 Feb 2010) Premature optimization, and all of that…
  49. (12 Feb 2010) Efficient querying
  50. (10 Feb 2010) Find the resource leak
  51. (21 Oct 2009) Can you spot the bug?
  52. (18 Oct 2009) Why is this wrong?
  53. (17 Oct 2009) Write the check in comment
  54. (15 Sep 2009) NH Prof Exporting Reports
  55. (02 Sep 2009) The lazy loaded inheritance many to one association OR/M conundrum
  56. (01 Sep 2009) Why isn’t select broken?
  57. (06 Aug 2009) Find the bug fixes
  58. (26 May 2009) Find the bug
  59. (14 May 2009) multi threaded test failure
  60. (11 May 2009) The regex that doesn’t match
  61. (24 Mar 2009) probability based selection
  62. (13 Mar 2009) C# Rewriting
  63. (18 Feb 2009) write a self extracting program
  64. (04 Sep 2008) Don't stop with the first DSL abstraction
  65. (02 Aug 2008) What is the problem?
  66. (28 Jul 2008) What does this code do?
  67. (26 Jul 2008) Find the bug fix
  68. (05 Jul 2008) Find the deadlock
  69. (03 Jul 2008) Find the bug
  70. (02 Jul 2008) What is wrong with this code
  71. (05 Jun 2008) why did the tests fail?
  72. (27 May 2008) Striving for better syntax
  73. (13 Apr 2008) calling generics without the generic type
  74. (12 Apr 2008) The directory tree
  75. (24 Mar 2008) Find the version
  76. (21 Jan 2008) Strongly typing weakly typed code
  77. (28 Jun 2007) Windsor Null Object Dependency Facility