>>> Cache store example started.

>>> Cleared values from cache.
>>> Current cache size: 0

>>> Loaded entry from store through ICache.LoadCache().
>>> Current cache size: 1

>>> Loaded entry from store through ICache.Get(): Employee [name=Breana Robbin, salary=6500, address=Address [street=3960 Sundown Lane, Austin, TX, zip=78130], departments=[Sales]]
>>> Current cache size: 2

>>> Put entry to cache.
>>> Current cache size: 3

>>> Cleared values from cache again.
>>> Current cache size: 0

>>> Read values after clear:
>>>     Key=1, value=Employee [name=Allison Mathis, salary=25300, address=Address [street=2702 Freedom Lane, San Francisco, CA, zip=94109], departments=[Development]]
>>>     Key=2, value=Employee [name=Breana Robbin, salary=6500, address=Address [street=3960 Sundown Lane, Austin, TX, zip=78130], departments=[Sales]]
>>>     Key=3, value=Employee [name=James Wilson, salary=12500, address=Address [street=1096 Eddy Street, San Francisco, CA, zip=94109], departments=[Human Resources, Customer Service]]
