No. You can implement your own caching system. I recommend Redis. When you use ORM you can also cache the resultset:
$result = Model::find([ 'cache' => [ 'key' => 'model_cache_key', 'lifetime' => 3600 ] ]);