Currently smart caching is implemented, but for development it often useful to never invalidate the cache. This can be currently achieved by manually modifying CachedClient like this:
if ($cached = $this->cache->load($cacheKey)) {
return $cached; // always use cached result if available
...
}