Initiative procedures already implemented:
(1) In config/schedule.rb
every 1.day, :at => "3:00 am" do
rake "bias_index:refresh"
end
(2) In lib/tasks/bias_index.rake
namespace :bias_index do
task :refresh => :environment do
print "Now refresh bias_index..."
Topic.all.each do |item|
item.refresh_bias_index
print "."
end
puts "Done."
end
end
(3) There are two models: User and Topic
(4) There is a "bias_index" field in Topic model:
field :bias_index, :type => Array, :default => []
(4) Now I need to compose an method named "refresh_bias_index" in Topic model:
I define User with 4 dimensions: gender (1 male, -1 female), age_bracket (1 young-aged, 0 middle-aged, -1 old-aged), resident (1 major cities, 0 county and town, -1 rural areas), education (1 high education, 0 middle education, -1 low education level).
If there are more than 60 users gave their scores to a Topic, I need to refresh bias_index using cronjobs:
a. If male users mean score is greater than total mean by more than 1 stdev, first element in bias_index will be given value "1". If female users mean score is greater than total mean by 1 stdev, first element in bias_index will be given value "-1". Otherwise, the first element value will be given "0".
b. Accordingly, age_bracket, resident and education will be mapped to second, third and fourth element in bias_index.
Once bias_index updated, no further update are required in the future. That is to say, in cronjobs, updated topic ids will be neglect.