ruby에서 타입을 확인하고 싶다면, .class를 호출한다.
require 'redis'
...
redis = Redis.new(TEST_REDIS)
result = redis.hgetall("test")
if (result.nil?)
return nil
end
puts result.class
ruby hash를 리턴한다.
<결과>
Hash
'Ruby' 카테고리의 다른 글
[ruby] or equals 기능 - ||= (0) | 2016.08.17 |
---|---|
[ruby] difference, union, intersection (0) | 2016.08.17 |
[ruby] thrift gem 이슈 - shifting a negative signed value is undefined [-Werror,-Wshift-negative-value] (0) | 2016.08.17 |
[ruby] ruby에서 현재 디렉토리 얻기 (0) | 2016.08.16 |
[ruby] enumeration의 inject (0) | 2016.08.12 |