如何从后端同步Redis服务器和Rails数据库?

时间:2018-07-27 12:31:26

标签: ruby-on-rails redis

我想加快Rails应用程序页面的加载时间,为此我正在使用Redis。我将查询记录从数据库存储到Redis服务器。在这里,在这段代码中,我检查变量是否已存在于redis中。如果已经存在,则无需再次执行查询,否则无需执行查询。我已将到期时间设置为1小时,因此此redis变量将在1小时后重置。

// Booths controller
class BoothsController < ApplicationController
  def new_booth
    @booth_package_types = fetch_package_type
  end
end

// Booth helper
module BoothsHelper
  def fetch_package_type
    package_types_booth =  $redis.get("package_types_booth") rescue nil
    if package_types_booth.nil?
      package_types_booth = PackageType.all.to_json
      $redis.set("package_types_booth", package_types_booth)
      $redis.expire("package_types_booth",1.hour.to_i)
    end
    @package_types_booth = JSON.load package_types_booth
  end
end

但是这里的问题是,如果数据库中的记录在1小时之前被更改,它将无法实时反映。 Redis是否有任何解决方案可以在后端同步数据库和Redis服务器数据,而我们无需提及到期时间?

1 个答案:

答案 0 :(得分:1)

是的,我们可以实现

class BoothsController < ApplicationController
  def new_booth
    @booth_package_types = fetch_package_type
  end
end

// Booth helper
module BoothsHelper
  def fetch_package_type
    package_types_booth =  $redis.get("package_types_booth")
    if package_types_booth.nil?
      package_types_booth = PackageType.all.to_json
      $redis.set("package_types_booth", package_types_booth)
    end
    @package_types_booth = JSON.load package_types_booth
  end
end

#booth.rb file
class Booth < ApplicationRecord
  after_save :clear_cache

  def clear_cache
    $redis.del "package_types_booth"
  end
end

您无需在创建和更新展位后数小时就明确提及,它会将其从缓存中删除。