> No.Just my plugin is used. In this case you only need to implement distributeScoreToOutlinks() also updateScore() so that it does what you want! :)
> ScoreDatum's score is the same as the row's score with the same url? ScoreDatum is used to transfer a score from a page to all it outlinks. In distributeScoreToOutlinks() the ScoreDatum's score is usually set for all outlinks, and in updateScore() the scores of all inlinks are used to update the score of the target page. Both methods are called automatically in the update-phase of a generate-fetch-parse-update cycle. I understood right you want the score only be based on the number of image outlinks. Would an empty method updateScore() help? You don't want to have a score influenced by inlinks, right? On 02/18/2014 12:08 PM, Vangelis karv wrote: > Hi Sebastian! > > >> are there any other scoring plugins used? Esp. scoring-opic which is on per >> default. > > No.Just my plugin is used. > >> The score is the result of sequentially calling the corresponding methods of >> all scoring filters. >> >> Second, the interface o.a.n.scoring.ScoringFilter defines more methods. >> Despite >> distributeScoreToOutlinks() also updateScore() is run every cycle. > > I have checked that interface. But that does not answer my previous > questions. :) > >> So have a look what these methods do. In case, also check all other enabled >> scoring filters. >> Outside scoring filters the score of a page is never changed. > > ScoreDatum's score is the same as the row's score with the same url? Whenever > I try to change the score of an Inlink through updateScore(), the score in > MySQL is not the one I am expecting. > >

