我需要在食物菜单刷新应用程序上执行两级缓存机制。我必须使用 Memcache 和 Redis 进行缓存。
首先需要检查 memcache 中是否存在菜单,如果没有或无法获取,则需要移动到 redis 缓存并检查菜单是否存在,如果它不存在或由于某些 redis 问题而失败,则获取菜单项从数据库。
pos_items = Rails.cache
.fetch("pos_menu_items_for_location_#{@location_id}", expires_in: 90.days) do
pos_items = RedisCache::PosMenu.fetch(location_id: @location_id) do
pos_items = PosMenuReader.new(location_id: @location_id).call
RedisCache::PosMenu.update(location_id: @location_id, menu: pos_items) unless pos_items == "working"
if pos_items == "working"
wait_for_worker_to_finish = true
else %>
<% Rails.logger.info("DEBUG::PosMenu::#{pos_menu_key} Fetched from db.") %>
<% pos_items %>
<% end
end
end %>