Method: Bizside::Cache::Entry#size

Defined in:
lib/bizside/cache/entry.rb

#sizeObject



41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/bizside/cache/entry.rb', line 41

def size
  if defined?(@s)
    @s
  else
    case value
    when NilClass
      0
    when String
      @value.bytesize
    else
      @s = Marshal.dump(@value).bytesize
    end
  end
end