rubyx/lib/parfait/page.rb
Torsten Ruger aaf6da8808 make object derivation explicit
in parfait
2015-04-08 20:33:15 +03:00

14 lines
439 B
Ruby

# A Page (from the traditionally a memory page) represents a collection of
# objects in a physically form. Ie the page holds the memory or data, that
# the objects are made up of.
# Pages have a total size, but more importantly and object size.
# All objects of a Page are same sized, and multiples of the smallest
# object. The smallest object is usually a cache line, 16 bytes or
# an exponent of two larger.
class Page < Object
end