Skip to content
Snippets Groups Projects
Commit c2a24967 authored by Mateus Rambo Strey's avatar Mateus Rambo Strey
Browse files

cache learning objects all_by_score

parent 0d02a4c4
No related branches found
No related tags found
No related merge requests found
......@@ -137,8 +137,16 @@ module OrientDb
end
def all_by_score_from_offset_to_limit(offset, limit)
objects_hash = connection.query "SELECT FROM LearningObject ORDER BY score DESC LIMIT #{limit} SKIP #{offset}", limit: limit
build_objects(objects_hash) || []
return [] if offset.blank? || limit.blank?
# expensive query
key = 'learning_objects/all/score/' + offset.to_s + '/' + limit.to_s
objects_hash = Rails.cache.fetch(key, expires_in: 6.hours) do
objects = connection.query "SELECT FROM LearningObject ORDER BY score DESC LIMIT #{limit} SKIP #{offset}", limit: limit
objects.map { |o| { 'rid' => o['@rid'] } }
end
LearningObjectBuilder.build(objects_hash)
end
def get_subjects(learning_object)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment