I'm trying to figure out which type of seo i will use for my site. I'm using asp.net routing (webforms) with an sql 2005 database.
I want to show my urls like: http://www.domain.com/article-category/article-title-of-current-page
This means I need to query my category and article by it's title (well, systemtitle column). The systemtitles columns are an indexed varchar(255) column.
Does anyone have done this the similar way and if so, did u notice any performance decrease by using this method? I can always opt-in for the /2-article-category/243-article-title-of-current-page and then query by id but I was hoping to avoid that so the urls look really clean.
I've read some things about this topic before and some say the performance impact is very little when the columns are indexed while others say it will make a huge impact. For now it's not important but if the site grows it should not suffer too much from it.
Any tips/advice is welcome.
Thank you for your time.
Kind regards, Mark