Method: Xunch::ListIdCache#size
- Defined in:
- lib/xunch/cache/list_id_cache.rb
#size(key) ⇒ Object
61 62 63 64 65 |
# File 'lib/xunch/cache/list_id_cache.rb', line 61 def size(key) raise "key can not be nil." unless key != nil new_key = assembleKey(key) @shard_redis.llen(new_key) end |