Home Page
  • April 18, 2024, 01:52:35 am *
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

Official site launch very soon, hurrah!


Author Topic: New Post Tagging System  (Read 11219 times)

Dakusan

  • Programmer Person
  • Administrator
  • Hero Member
  • *****
  • Posts: 536
    • View Profile
    • Dakusan's Domain
New Post Tagging System
« on: November 05, 2010, 10:47:04 am »

Original update for New Post Tagging System can be found at https://www.castledragmire.com/Updates/New_Post_Tagging_System.
Originally posted on: 11/04/10
Regarding: Posts

I’ve been meaning to redo the tagging system ever since I first built my website, but was never really sure how I wanted to. I liked how I had relevant tag words tied to each post, but not how posts would show other posts using shared tags.

The old system was incredibly clunky and unhelpful. I honestly just threw a solution together for it without giving it thought, as at the time I didn’t consider it very important compared to getting the rest of the site done. It has honestly been bugging me enough for a while that I decided to take care of it. I came up with a solution for how I wanted it to work a few days ago and implemented it today.


All tags in both system link to their corresponding archive tag page.


The old version had 3 output sections which worked as follows:
  1. A list of the most recent 4 shared tags showing up to the 4 most recent posts for each of those tags, which often showed duplicate posts from preceding tags.
  2. A list of the rest of the shared tags.
  3. A list of the non-shared tags.
The system also sometimes ran over its vertical height limits :-\.

I find the new system much more helpful. It determines post relevancy by adding the reciprocals of the number of times each tag is shared.

(1/SharedTag1Times+1/SharedTag2Times+...)
So a tag is considered more relevant the less it is shared.

This new tagging system has 2 output sections which work as follows:
  1. The list of tags in descending order of relevance. Each tag is followed by its share count if not 0.
  2. The 4 most relevant shared posts in descending order of relevance. Each post takes up only 1 line with its horizontal overflow hidden. Each of these lines contains post name, number of shared tags, and a list of the shared tags in descending order of relevance.
This new system should never overflow vertically.

If I had engineered this properly from the start, I might have also included a weight for each tag on a post. This is no longer an option however as it would not be worth the effort going back and reweighing all previous posts. I’m not even sure if it would have been a good thing either, as tagging posts is already enough of a PITA without having to determine subjective weights.

Logged