在Redis中使用ZINCRBY存储哈希

时间:2019-01-04 04:33:15

标签: ruby-on-rails ruby redis

我正在尝试使用Redis来缓存站点搜索的自动完成功能。我碰到了一个教程,向您展示了如何以这种方式存储纯字符串:

$redis.zincrby "search-suggestions:#{prefix.downcase}", 1, term.downcase

我想知道是否有一种方法可以存储哈希,而仍然使用ZINCRBY。我正在考虑尝试执行以下操作:

$redis.zincrby "search-suggestions:#{prefix.downcase}", 1, {key: val, ...}

完整代码示例:

class SearchSuggestion
  def self.terms_for(prefix)
    $redis.zrevrange "search-suggestions:#{prefix.downcase}", 0, 9
  end 

  def self.index_products
    Product.find_each do |product|
      index_term(product.name)
      product.name.split.each { |t| index_term(t) }
      index_term(product.category)
    end
  end

  def self.index_term(term)
    1.upto(term.length - 1) do |n|
      prefix = term[0, n]
      $redis.zincrby "search-suggestions:#{prefix.downcase}", 1, term.downcase
    end
  end
end

来源:Railscast: Episode #399

1 个答案:

答案 0 :(得分:1)

zincrby使用排序后的字符串集,但是没有什么可以阻止您使用对象的JSON表示形式:

interactive redis example

$redis.zincrby "search-suggestions:#{prefix.downcase}",
               1,
               JSON.dump({key: val, ...})