Published on 2005-09-19 07:20:59

Anyway, I think in first step I'll have to reduce the false positive results, then optimize the splogs detection system in general. Certainly lot of testing should be done before run it on all the database.

There will be certainly many new consideration which will be taken to analyze blogs and detect splogs. The best thing will be a database with 100% of results guaranty, so I guess I'll have something like if(!isAvailable($blog)) { return 3; } if (isSplog($blog)) { return 1; } if (isBlog($blog)) { return 0; } return 4; which is better than the current approach which is something like : if(!isAvailable($blog)) { return 3; } if (isSplog($blog)) { return 1; } else { return 0; }

Okay after some work it become a little easy to say "it's a splog", but how to say "it's a normal blog ?". Someone can automate this ? :-)

Previous Page


Related Entries

Member of the PHP Magazine Network, Copyright (C) 2005-2008 phpmagazine.net All Rights Reserved