tiredpixel/redis-to-collection-rb

View on GitHub
lib/redis-to-collection/constants.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RedisToCollection
  
  REDIS_TYPES = {
    :string => :s,
    :hash   => :h,
    :list   => :l,
    :set    => :e,
    :zset   => :z,
  }.freeze
  
end